Skip to content

Commit

Permalink
aab
Browse files Browse the repository at this point in the history
  • Loading branch information
judemont committed Apr 7, 2024
1 parent a646cd8 commit d4e3e8f
Showing 1 changed file with 26 additions and 7 deletions.
33 changes: 26 additions & 7 deletions .github/workflows/flutter-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,6 @@ jobs:
buildToolsVersion: 33.0.0


# Upload generated apk to the artifacts.
- name: relase output
uses: actions/upload-artifact@v1
with:
name: release-apk
path: build/app/outputs/apk/release/app-release.apk

- name: create-release
id: create_release
uses: actions/create-release@v1
Expand All @@ -97,6 +90,32 @@ jobs:
asset_path: ${{steps.sign_app.outputs.signedFile}}
asset_name: reciper-release-${{ steps.version.outputs.version }}.apk
asset_content_type: application/apk


- name: build bundle
run: flutter build appbundle

- uses: ilharp/sign-android-release@v1
name: Sign app bundle
id: sign_app_bundle
with:
releaseDir: build/app/outputs/bundle/release
signingKey: ${{ secrets.KEYSTORE }}
keyAlias: ${{ secrets.SIGNING_KEY_ALIAS }}
keyStorePassword: ${{ secrets.SIGNING_STORE_PASSWORD }}
keyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
buildToolsVersion: 33.0.0

- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{steps.sign_app.outputs.signedFile}}
asset_name: reciper-release-${{ steps.version.outputs.version }}.aab
asset_content_type: application/aab

- name: Publish release
uses: eregon/[email protected]
env:
Expand Down

0 comments on commit d4e3e8f

Please sign in to comment.