Skip to content

Commit

Permalink
Update build-android-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
marcorossi-cb authored Mar 11, 2024
1 parent 7975274 commit 0fca89a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-android-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,16 @@ jobs:
# channel: 'stable'
# cache: true
- name: Prepare Android json service account
run: echo "${{ inputs.JSON_PLAY_STORE_API_KEY }}" | base64 --decode > api_key.json
run: echo "${{ secrets.JSON_PLAY_STORE_API_KEY }}" | base64 --decode > api_key.json
- name: Prepare Android keystore
run: echo "${{ inputs.STORE_FILE }}" | base64 --decode > app/ansa.keystore
run: echo "${{ secrets.STORE_FILE }}" | base64 --decode > app/ansa.keystore
- name: Create key.properties
run: |
mkdir -p key
echo "storeFile=ansa.keystore" > key/key.properties
echo "storePassword=${{ inputs.STORE_PASSWORD }}" >> key/key.properties
echo "keyPassword=${{ inputs.KEY_PASSWORD }}" >> key/key.properties
echo "keyAlias=${{ inputs.KEY_ALIAS }}" >> key/key.properties
echo "storePassword=${{ secrets.STORE_PASSWORD }}" >> key/key.properties
echo "keyPassword=${{ secrets.KEY_PASSWORD }}" >> key/key.properties
echo "keyAlias=${{ secrets.KEY_ALIAS }}" >> key/key.properties
- name: Install Dependencies
run: flutter pub get
- name: Check app and set version
Expand Down

0 comments on commit 0fca89a

Please sign in to comment.