Skip to content

Commit 958d883

Browse files
authoredNov 2, 2024··
Update build.yml
1 parent 3047316 commit 958d883

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎.github/workflows/build.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,15 @@ jobs:
6464
keystorePassword: ${{ secrets.ANDROID_KEYSTORE_PASS }}
6565
keystoreAlias: ${{ secrets.ANDROID_KEYALIAS_NAME }}
6666
keyPassword: ${{ secrets.ANDROID_KEYALIAS_PASS }}
67+
apkPath: build/Android/Springman-Universal.apk
6768

6869
- uses: actions/upload-artifact@v4
6970
with:
7071
name: springman-universal
71-
path: ${{ steps.convert_aab.outputs.apkPath }}/Android.apk
72+
path: ${{ steps.convert_aab.outputs.apkPath }}
7273

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

Comments
 (0)
Please sign in to comment.