Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Nov 28, 2024
1 parent ccbe6de commit 8d1c5be
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/ecosystem_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Dart
uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
with:
sdk: dev

- uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1
with:
channel: main
Expand All @@ -39,8 +34,6 @@ jobs:

- name: Update package and test
run: |
echo "${{ inputs.package_name }}"
echo "${{ inputs.new_version }}"
dart run pkgs/quest/bin/quest.dart ${{ inputs.package_name }} ${{ inputs.new_version }} ${{ inputs.repos_file }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion pkgs/quest/bin/quest.dart
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class Quest {

Future<void> writeComment(String content) async {
final commentFile = File('output/comment.md');
await commentFile.create();
await commentFile.create(recursive: true);
await commentFile.writeAsString(content);
}

Expand Down

0 comments on commit 8d1c5be

Please sign in to comment.