Skip to content

Commit

Permalink
ci: miss auto gen *.part.g.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
d1y committed Jun 17, 2023
1 parent 1c81355 commit 1e1cc4f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
- name: Install project dependencies
run: flutter pub get
run: |
flutter pub get
flutter pub run build_runner build
- name: Enable windows build
run: flutter config --enable-windows-desktop
- name: Build artifacts
Expand Down Expand Up @@ -50,7 +52,9 @@ jobs:
- name: Disable Google Analytics
run: flutter config --no-analytics
- name: Install dependencies
run: flutter pub get
run: |
flutter pub get
flutter pub run build_runner build
- name: Enable Linux support
run: flutter config --enable-linux-desktop
- name: Install dependencies
Expand Down Expand Up @@ -85,6 +89,7 @@ jobs:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: "stable"
- run: flutter pub get
- run: flutter pub run build_runner build
- run: flutter pub deps
- run: flutter build apk --target-platform android-arm,android-arm64,android-x64 --split-per-abi

Expand Down

0 comments on commit 1e1cc4f

Please sign in to comment.