Skip to content

Commit

Permalink
android deploy action update (put serviceAccount.json file in place)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexqwesa committed Aug 5, 2023
1 parent 108beaf commit 89b8f8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
echo "flutter.versionName=1.2.0" >> android/local.properties
echo "flutter.versionCode=27" >> android/local.properties
mkdir secrets
cp ${{ steps.android_keystore.outputs.filePath }} secrets/pc-api.json
cp ${{ steps.service_account_json_file.outputs.filePath }} secrets/
- name: flutter build appbundle (to create gradlew)
run: |
Expand Down Expand Up @@ -103,10 +103,10 @@ jobs:
cd ..
env:
KEYSTORE_FILE: ${{ steps.android_keystore.outputs.filePath }}
# STORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
KEY_ALIAS: ${{ secrets.KEY_ALIAS}}
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
ANDROID_JSON_KEY_FILE: ${{ steps.service_account_json_file.outputs.filePath }}
# STORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}

- name: Upload build artifacts
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion android/fastlane/Appfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
json_key_file("../secrets/pc-api.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
json_key_file("../secrets/serviceAccount.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
package_name("com.ais3uson.app.ais3uson_app") # e.g. com.krausefx.app

0 comments on commit 89b8f8a

Please sign in to comment.