Update android.yml

This commit is contained in:
deniscerri 2024-09-01 11:07:02 +02:00 committed by GitHub
parent da857b5b5c
commit d551299c8b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -27,8 +27,12 @@ jobs:
- uses: gradle/gradle-build-action@v2
with:
gradle-version: 7.5
- name: Create jks.asc file
run: echo "${{ secrets.BASE_64_SIGNING_KEY }}" > release_keystore.jks.asc
- name: Create jks file
run: gpg -d -passphrase "${{ secrets.BASE_64_SIGNING_KEY_PASSPHRASE }}" -batch release_keystore.jks.asc > app/release_keystore.jks
- name: Create Properties File
run: touch local.properties
run: echo "${{ secrets.LOCAL_PROPERTIES }}" > local.properties
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle