Skip to content

Commit

Permalink
ci: upload build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Ascenio committed Jul 7, 2024
1 parent 86fc079 commit 0b60f0a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ jobs:
flutter-version: 3.19.4
- name: Generates appbundle
run: flutter build appbundle
- name: Uploads appbundle
uses: actions/upload-artifact@v4
with:
path: build/app/outputs/bundle/release/app-release.aab

building-ios:
runs-on: macos-latest
Expand All @@ -87,5 +91,9 @@ jobs:
with:
channel: stable
flutter-version: 3.19.4
- name: Generates appbundle
run: flutter build ios --no-codesign
- name: Generates ipa
run: flutter build ipa --no-codesign
- name: Uploads ipa
uses: actions/upload-artifact@v4
with:
path: build/ios/archive/Runner.xcarchive/

0 comments on commit 0b60f0a

Please sign in to comment.