Skip to content

Commit

Permalink
build: update github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
linaaaqi committed Apr 19, 2023
1 parent 920854e commit 5e3505a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ jobs:
java-version: '12.x'
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.0.1'
flutter-version: '3.7.11'
- run: dart --version
- run: flutter --version
- run: flutter pub get
- run: flutter build apk
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: silversabres.${{ github.sha }}.android
name: sail.${{ github.sha }}.android
path: build/app/outputs/flutter-apk/app-release.apk

build_ios:
needs: check_commit_msg
runs-on: macos-latest
Expand All @@ -50,13 +50,13 @@ jobs:
java-version: '12.x'
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.0.1'
flutter-version: '3.7.11'
- run: dart --version
- run: flutter --version
- run: flutter pub get
- run: flutter build ios --release --no-codesign
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: silversabres.${{ github.sha }}.ios
name: sail.${{ github.sha }}.ios
path: build/ios/iphoneos/Runner.app

0 comments on commit 5e3505a

Please sign in to comment.