We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3047316 commit 958d883Copy full SHA for 958d883
.github/workflows/build.yml
@@ -64,9 +64,15 @@ jobs:
64
keystorePassword: ${{ secrets.ANDROID_KEYSTORE_PASS }}
65
keystoreAlias: ${{ secrets.ANDROID_KEYALIAS_NAME }}
66
keyPassword: ${{ secrets.ANDROID_KEYALIAS_PASS }}
67
+ apkPath: build/Android/Springman-Universal.apk
68
69
- uses: actions/upload-artifact@v4
70
with:
71
name: springman-universal
- path: ${{ steps.convert_aab.outputs.apkPath }}/Android.apk
72
+ path: ${{ steps.convert_aab.outputs.apkPath }}
73
74
+ - name: Release
75
+ uses: softprops/action-gh-release@v2
76
+ if: startsWith(github.ref, 'refs/tags/')
77
+ with:
78
+ files: build/Android/Springman-Universal.apk
0 commit comments