Skip to content

Commit

Permalink
fixed path in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Benimautner committed Jul 21, 2024
1 parent be353e9 commit 41b77d7
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/flutter-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,15 @@ jobs:
env:
GPG_PASS: ${{ secrets.GPG_PASS }}
run: |
cd ../
cd android/
keyPropFile=key.properties
gpg -d --passphrase "$GPG_PASS" --batch $keyPropFile.asc > $keyPropFile
- name: Decrypting Fastlane Secret file
env:
GPG_PASS: ${{ secrets.GPG_PASS }}
run: |
pwd
cd android
cd android/
file=fastlane-secret.json
gpg -d --passphrase "$GPG_PASS" --batch $file.asc > $file
Expand All @@ -80,13 +79,13 @@ jobs:
- run: flutter pub get
- run: flutter build appbundle
- run: flutter build apk
#- name: Upload build artifacts
# uses: actions/upload-artifact@v2
# with:
# name: app-release-bundle
# path: |
# build/app/outputs/bundle/release/app-release.aab
# build/app/outputs/flutter-apk/app-release.apk
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: app-release-bundle
path: |
build/app/outputs/bundle/release/app-release.aab
build/app/outputs/flutter-apk/app-release.apk
#- name: Deploy Google Play
# run: |
Expand Down

0 comments on commit 41b77d7

Please sign in to comment.