1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-22 01:47:08 +02:00

Fixed path issue in github action android build

This commit is contained in:
Alex Tran 2022-03-14 09:04:08 -05:00
parent 7f038cae90
commit 46e344bb92

View File

@ -28,9 +28,9 @@ jobs:
- name: Decode Keystore
run: |
echo "${{secrets.SIGNING_KEY}}" > release.keystore.asc
gpg --decrypt --passphrase "${{secrets.KEY_STORE_PASSWORD}}" --batch release.keystore.asc > mobile/android/key.jks
gpg --decrypt --passphrase "${{secrets.KEY_STORE_PASSWORD}}" --batch release.keystore.asc > android/key.jks
- name: Create key.properties
run: touch mobile/android/key.properties echo "storePassword=<storePassword> keyPassword=<keyPassword> keyAlias=<keyAlias> storeFile=../key.jks" > mobile/android/key.properties
run: touch mobile/android/key.properties echo "storePassword=<storePassword> keyPassword=<keyPassword> keyAlias=<keyAlias> storeFile=../key.jks" > android/key.properties
- run: flutter --version
- run: flutter pub get
- run: flutter build apk