bump version #9
Workflow file for this run
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
name: Flutter CICD # action name | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build: # job's name | |
runs-on: ubuntu-latest # container os | |
#env: # ADD environment variables | |
# KEY_JKS: ${{!secrets!}} | |
# KEY_PATH: ${{!github!}}/key.jks | |
# KEY_PASSWORD: ${{!secrets!}} | |
# ALIAS_PASSWORD: ${{!secrets!}} | |
defaults: | |
run: | |
working-directory: app | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v2 # cd to current dir | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' # See 'Supported distributions' for available options | |
java-version: '17' | |
# - name: Create key file | |
# run: echo $KEY_JKS | base64 -di > key.jks | |
- uses: subosito/flutter-action@v1 | |
with: | |
channel: beta | |
- run: flutter pub get | |
# - run: flutter test | |
- run: flutter build apk --release --split-per-abi | |
- run: flutter build appbundle | |
- name: Create github artifact release # disable this to save storage | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "app/build/app/outputs/apk/release/*.apk,app/build/app/outputs/bundle/release/app-release.aab" | |
- name: Upload app bundle artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: appbundle | |
path: app/build/app/outputs/bundle/release/app-release.aab |