Skip to content

Commit

Permalink
try different location
Browse files Browse the repository at this point in the history
  • Loading branch information
waozixyz committed Jan 22, 2025
1 parent 81034f0 commit e6b144f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,18 @@ jobs:
xmake
- name: Decode Keystore
run: |
mkdir -p android/app
mkdir -p android/app/app # Changed to create app/app directory
echo "${{ secrets.RELEASE_KEYSTORE }}" > release.keystore.base64
base64 -d release.keystore.base64 > android/app/release.keystore
base64 -d release.keystore.base64 > android/app/app/release.keystore # Changed path
- name: Build Release APK
run: |
cd android && ./gradlew assembleRelease \
-Pandroid.injected.signing.store.file=app/release.keystore \
-Pandroid.injected.signing.store.file=app/app/release.keystore \ # Changed path
-Pandroid.injected.signing.store.password=${{ secrets.KEYSTORE_PASSWORD }} \
-Pandroid.injected.signing.key.alias=${{ secrets.KEY_ALIAS }} \
-Pandroid.injected.signing.key.password=${{ secrets.KEY_PASSWORD }}
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit e6b144f

Please sign in to comment.