Skip to content

Commit

Permalink
Appbundle release (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
sevonj authored Feb 6, 2024
1 parent 4ece353 commit d034510
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,19 @@ jobs:
echo 'keyPassword=${{ secrets.ANDROID_KEYSTORE_PASSPHRASE }}' >> android/keystore.properties
echo 'keyAlias=${{ secrets.ANDROID_KEYSTORE_KEYALIAS }}' >> android/keystore.properties
echo 'storeFile=keystore.jks' >> android/keystore.properties
- name: Build
- name: Build Bundle
run: flutter build appbundle --release
- name: Build APK
run: flutter build apk --release
- name: List files
run: ls -R build/app/outputs/flutter-apk
- name: Create artifact
run: ls -R build/app/outputs/flutter-apk ; ls -R build/app/outputs/bundle
- name: Create Bundle artifact
uses: actions/upload-artifact@v4
with:
name: visualtimer_bundle
path: build/app/outputs/bundle/release/app-release.aab
- name: Create APK artifact
uses: actions/upload-artifact@v4
with:
name: visualtimer_apk
Expand Down Expand Up @@ -116,6 +124,7 @@ jobs:
./artifacts/visualtimer_linux.zip
./artifacts/visualtimer_windows.zip
./artifacts/visualtimer_apk/app-release.apk
./artifacts/visualtimer_bundle/app-release.aab
- name: Deploy Web
uses: JamesIves/github-pages-deploy-action@v4
Expand Down

0 comments on commit d034510

Please sign in to comment.