Skip to content

Commit

Permalink
Update android-release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
YumNumm authored Oct 10, 2022
1 parent f92eb61 commit 73eaa7f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/android-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ jobs:
run: fvm flutter pub get

- name: Generate codes with build_runner
run: fvm flutter pub run build_runner build --delete-conflicting-outputs
run: |
echo '${{ secrets.ENV }}' | base64 -d > .env
fvm flutter pub run build_runner build --delete-conflicting-outputs
- name: Generate LauncherIcon
run: fvm flutter pub run flutter_launcher_icons:main
Expand All @@ -65,7 +67,6 @@ jobs:
run: |
echo '${{ secrets.SIGNING_KEY }}' | base64 -d > android/app/key.jks
echo '${{ secrets.FIREBASE_ANDROID }}' | base64 -d > android/app/google-services.json
echo '${{ secrets.ENV }}' | base64 -d > .env
export KEYSTORE_PASSWORD='${{ secrets.KEYSTORE_PASSWORD }}'
export KEY_ALIAS='${{ secrets.KEY_ALIAS }}'
export KEY_PASSWORD='${{ secrets.KEY_PASSWORD }}'
Expand Down

0 comments on commit 73eaa7f

Please sign in to comment.