From 46e344bb920dc42d6b23a1ef11a79a46f4431f70 Mon Sep 17 00:00:00 2001 From: Alex Tran Date: Mon, 14 Mar 2022 09:04:08 -0500 Subject: [PATCH] Fixed path issue in github action android build --- .github/workflows/build_apk.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_apk.yml b/.github/workflows/build_apk.yml index 5e669ac83d..0a3c28b1e2 100644 --- a/.github/workflows/build_apk.yml +++ b/.github/workflows/build_apk.yml @@ -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= keyPassword= keyAlias= storeFile=../key.jks" > mobile/android/key.properties + run: touch mobile/android/key.properties echo "storePassword= keyPassword= keyAlias= storeFile=../key.jks" > android/key.properties - run: flutter --version - run: flutter pub get - run: flutter build apk