Skip to content

Commit 8b3f980

Browse files
committed
Polish workflow
1 parent ba5d25c commit 8b3f980

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/gh_apk_release.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: GH Apk Release
12
on: workflow_dispatch
23

34
env:
@@ -18,7 +19,7 @@ jobs:
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
@@ -28,7 +29,7 @@ jobs:
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

0 commit comments

Comments
 (0)