File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1+ name : Create GitHub APK Release
12on : workflow_dispatch
23
34env :
45 GRADLE_OPTS : -Dorg.gradle.jvmargs="-Xmx3072m -XX:MaxMetaspaceSize=1g -Xms512m -XX:+HeapDumpOnOutOfMemoryError"
5- SIGNING_KEYSTORE_PLAY : ${{ secrets.SIGNING_KEYSTORE }}
6- SIGNING_PROPERTIES_PLAY : ${{ secrets.SIGNING_PROPERTIES }}
6+ SIGNING_KEYSTORE : ${{ secrets.SIGNING_KEYSTORE }}
7+ SIGNING_PROPERTIES : ${{ secrets.SIGNING_PROPERTIES }}
78
89jobs :
910 build :
1819 distribution : temurin
1920
2021 - name : Setup Signing
21- run : .github/signing_setup.sh
22+ run : chmod +x .github/signing_setup.sh && .github/signing_setup.sh
2223
2324 - name : Build release APK
2425 run : ./gradlew assembleRelease
2829 run : echo "VERSION=$(grep -Po '^version=\K.*' gradle.properties)" >> $GITHUB_OUTPUT
2930
3031 - name : Create Github Release
31- uses : softprops/action-gh-release@v1
32+ uses : softprops/action-gh-release@v2
3233 with :
3334 tag_name : ${{ steps.version.outputs.VERSION }}
3435 files : app/build/outputs/apk/release/${{ steps.version.outputs.VERSION }}.apk
You can’t perform that action at this time.
0 commit comments