Skip to content

Commit 6031046

Browse files
fix: CIワークフローのコード生成コマンドを修正
- build_runnerの実行コマンドをdartからflutterに変更し、正しい環境でのコード生成を保証
1 parent 1c8a05e commit 6031046

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- name: Codegen verify (only latest)
6969
if: matrix.flutter == '3.32.x'
7070
run: |
71-
dart run build_runner build -d --build-filter="lib/**"
71+
flutter pub run build_runner build -d --build-filter="lib/**"
7272
git diff --exit-code || (echo 'Codegen produced changes. Please commit generated files.' && exit 1)
7373
7474
example-android:

0 commit comments

Comments
 (0)