-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/widgetbook-preview-to-gh-pages
- Loading branch information
Showing
85 changed files
with
1,037 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
name: Build and sign application for Android | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v[0-9]+.[0-9]+.[0-9]+" | ||
- "v[0-9]+.[0-9]+.[0-9]+([0-9]+)" | ||
|
||
workflow_dispatch: | ||
inputs: | ||
name: | ||
description: "Release-Build-Android" | ||
default: "Generate release build for Android" | ||
|
||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build: | ||
environment: packaging | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
path: app | ||
|
||
- name: Checkout "eidmsdk_flutter" | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: slovensko-digital/eidmsdk-flutter | ||
token: ${{ secrets.GH_PAT }} | ||
path: eidmsdk_flutter | ||
|
||
- name: Checkout "autogram_sign" | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: slovensko-digital/avm-client-dart | ||
token: ${{ secrets.GH_PAT }} | ||
path: autogram_sign | ||
|
||
- uses: actions/setup-java@v1 | ||
with: | ||
java-version: '17.x' | ||
|
||
- uses: subosito/flutter-action@v1 | ||
with: | ||
flutter-version: '3.16.5' | ||
channel: 'stable' | ||
|
||
- name: Install dependencies | ||
working-directory: ./app | ||
run: flutter pub get | ||
|
||
- name: Test | ||
working-directory: ./app | ||
run: flutter test | ||
|
||
- name: Decode Keystore | ||
env: | ||
ENCODED_STRING: ${{ secrets.GOOGLE_KEYSTORE_BASE_64 }} | ||
working-directory: ./app | ||
run: echo $ENCODED_STRING | base64 -d > release_keystore.jks | ||
|
||
- name: Build | ||
env: | ||
AVM_KEYSTORE_FILE: ../../release_keystore.jks | ||
AVM_KEYSTORE_PASSWORD: ${{ secrets.GOOGLE_RELEASE_KEYSTORE_PASSWORD }} | ||
AVM_KEY_ALIAS: ${{ secrets.GOOGLE_RELEASE_KEYSTORE_ALIAS }} | ||
AVM_KEY_PASSWORD: ${{ secrets.GOOGLE_RELEASE_KEY_PASSWORD }} | ||
working-directory: ./app | ||
run: flutter build appbundle --release | ||
|
||
- name: Upload Release Build to Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: release-artifacts | ||
path: ./app/build/app/outputs/bundle/release/app-release.aab | ||
|
||
- name: Create release if tag pushed | ||
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
draft: true | ||
prerelease: true | ||
files: | | ||
./app/build/app/outputs/bundle/release/app-release.aab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.