Skip to content

Commit

Permalink
Update android.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Nep-Timeline authored Jul 30, 2023
1 parent 9644848 commit 9699908
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,14 @@ jobs:
run: chmod +x gradlew

- name: Build Debug with Gradle
run: ./gradlew :app:assembleDebug
run: |
echo ${{ secrets.SIGN_KEYSTORE_BASE64 }} | base64 -d > keystore.jks
./gradlew :app:assembleRelease
env:
KEYSTORE_PATH: "../keystore.jks"
KEYSTORE_PASSWORD: ${{ secrets.SIGN_KEYSTORE_PASSWORD }}
KEY_ALIAS: ${{ secrets.SIGN_KEY_ALIAS }}
KEY_PASSWORD: ${{ secrets.SIGN_KEY_PASSWORD }}

- name: Upload Debug APK
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 9699908

Please sign in to comment.