Skip to content

Commit

Permalink
app signing action wip
Browse files Browse the repository at this point in the history
  • Loading branch information
celuchmarek committed May 29, 2024
1 parent 4f9f1d4 commit 0c9cca6
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name: Build and sign application

on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+([0-9]+)"
branches: ['feature/signing_key']
# tags:
# - "v[0-9]+.[0-9]+.[0-9]+"
# - "v[0-9]+.[0-9]+.[0-9]+([0-9]+)"

# workflow_dispatch:
# inputs:
Expand Down Expand Up @@ -62,7 +63,10 @@ jobs:
env:
ENCODED_STRING: ${{ secrets.GOOGLE_KEYSTORE_BASE_64 }}
working-directory: ./app
run: echo $ENCODED_STRING | base64 -d > release_keystore.jks
run: |
echo $ENCODED_STRING | base64 -d > release_keystore.jks
pwd
ls
- name: Build
env:
Expand All @@ -71,7 +75,9 @@ jobs:
AVM_KEY_ALIAS: ${{ secrets.GOOGLE_RELEASE_KEYSTORE_ALIAS }}
AVM_KEY_PASSWORD: ${{ secrets.GOOGLE_RELEASE_KEY_PASSWORD }}
working-directory: ./app
run: flutter build apk
run: |
pwd
flutter build apk
- name: Get release file apk path
id: releaseApk
Expand Down

0 comments on commit 0c9cca6

Please sign in to comment.