Skip to content

Commit

Permalink
fix secret env
Browse files Browse the repository at this point in the history
  • Loading branch information
2shrestha22 committed Jul 17, 2024
1 parent d55f869 commit 7480faf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Clone Repository
uses: actions/checkout@v4
Expand All @@ -27,8 +27,8 @@ jobs:

- name: Setup KeyStore
run: |
echo $KEYSTORE_FILE_BASE64 | base64 --decode > ./android/keystore.jks
echo $KEY_PROPERTIES_BASE64 | base64 --decode > ./android/key.properties
echo ${{ secrets.KEYSTORE_FILE_BASE64 }} | base64 --decode > ./android/keystore.jks
echo ${{ secrets.KEY_PROPERTIES_BASE64 }} | base64 --decode > ./android/key.properties
- name: Build App Bundle
run: flutter build appbundle --build-number ${{ github.run_number }}
Expand Down

0 comments on commit 7480faf

Please sign in to comment.