We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba5d25c commit 8b3f980Copy full SHA for 8b3f980
.github/workflows/gh_apk_release.yaml
@@ -1,3 +1,4 @@
1
+name: GH Apk Release
2
on: workflow_dispatch
3
4
env:
@@ -18,7 +19,7 @@ jobs:
18
19
distribution: temurin
20
21
- name: Setup Signing
- run: .github/signing_setup.sh
22
+ run: chmod +x .github/signing_setup.sh && .github/signing_setup.sh
23
24
- name: Build release APK
25
run: ./gradlew assembleRelease
@@ -28,7 +29,7 @@ jobs:
28
29
run: echo "VERSION=$(grep -Po '^version=\K.*' gradle.properties)" >> $GITHUB_OUTPUT
30
31
- name: Create Github Release
- uses: softprops/action-gh-release@v1
32
+ uses: softprops/action-gh-release@v2
33
with:
34
tag_name: ${{ steps.version.outputs.VERSION }}
35
files: app/build/outputs/apk/release/${{ steps.version.outputs.VERSION }}.apk
0 commit comments