Skip to content

Commit

Permalink
Updated key store props.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavik-multipl committed Apr 6, 2023
1 parent 72ad3a2 commit e91d6fc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build-and-deploy-to-playstore.yml
Expand Up @@ -23,6 +23,10 @@ jobs:
key: ${{ runner.os }}-pub-cache-${{ hashFiles('**/pubspec.lock') }}
restore-keys: ${{ runner.os }}-pub-cache-

- name: Set up keystore.properties
run: |
echo "${{ secrets.KEYSTORE_PROPERTIES }}" > android/key.properties
- uses: subosito/flutter-action@v1.5.3
with:
channel: 'stable'
Expand All @@ -32,6 +36,11 @@ jobs:

- name: Build release app bundle
run: flutter build appbundle --release
env:
KEYSTORE_PATH: android/key.jks
KEYSTORE_ALIAS: my_keystore_alias
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}

- name: Authenticate with Google Play Console
uses: google-github-actions/setup-gcloud@v1
Expand Down

0 comments on commit e91d6fc

Please sign in to comment.