Skip to content

Commit a327e42

Browse files
committed
Fix: Correct KEYSTORE_FILE path in GitHub Actions workflow
The KEYSTORE_FILE path in the local.properties file was missing the GitHub workspace prefix. This commit adds `github.workspace` to ensure the correct path is used during the Android build process.
1 parent f512e32 commit a327e42

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
- name: Write local.properties
111111
run: |
112112
echo "sdk.dir=$ANDROID_HOME" > local.properties
113-
echo "KEYSTORE_FILE=${{ env.KEYSTORE_FILE }}" >> local.properties
113+
echo "KEYSTORE_FILE=${{ github.workspace }}/${{ env.KEYSTORE_FILE }}" >> local.properties
114114
echo "KEYSTORE_PASSWORD=${{ env.KEYSTORE_PASSWORD }}" >> local.properties
115115
echo "KEY_ALIAS=${{ env.KEY_ALIAS }}" >> local.properties
116116
echo "KEY_PASSWORD=${{ env.KEY_PASSWORD }}" >> local.properties

0 commit comments

Comments
 (0)