Skip to content

Commit

Permalink
Update app-prebuild.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kazami139 authored and GitHub Enterprise committed Feb 15, 2023
1 parent da7d44e commit 32ad739
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/app-prebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:

env:
ANDROID_KEY: ${{ secrets.ANDROID_KEY }}
KEY_PROPERTIES: ${{ secrets.KEY_PROPERTIES }}

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand All @@ -41,7 +42,9 @@ jobs:
channel: 'stable' # or: 'beta', 'dev' or 'master'

- name: Set android sign key for app building
- run: touch ./android/key.properties && echo $ANDROID_KEY > ./android/key.properties
run: |
touch ./andriod/key.pem && echo $ANDROID_KEY > ./andriod/key.pem
touch ./android/key.properties && echo $KEY_PROPERTIES > ./android/key.properties
- run: flutter pub get
# - run: flutter test
- run: flutter build apk
Expand Down

0 comments on commit 32ad739

Please sign in to comment.