File tree Expand file tree Collapse file tree 1 file changed +4
-20
lines changed
Expand file tree Collapse file tree 1 file changed +4
-20
lines changed Original file line number Diff line number Diff line change @@ -33,37 +33,21 @@ jobs:
3333 cd android-app
3434 gradle wrapper --gradle-version 8.2
3535
36- - name : Build Release APK
36+ - name : Build Debug APK
3737 run : |
3838 cd android-app
39- ./gradlew assembleRelease
40-
41- - name : Sign APK
42- uses : r0adkll/sign-android-release@v1
43- id : sign_app
44- with :
45- releaseDirectory : android-app/app/build/outputs/apk/release
46- signingKeyBase64 : ${{ secrets.SIGNING_KEY }}
47- alias : ${{ secrets.ALIAS }}
48- keyStorePassword : ${{ secrets.KEY_STORE_PASSWORD }}
49- keyPassword : ${{ secrets.KEY_PASSWORD }}
50- env :
51- BUILD_TOOLS_VERSION : " 34.0.0"
52- continue-on-error : true
39+ ./gradlew assembleDebug
5340
5441 - name : Upload APK
5542 uses : actions/upload-artifact@v4
5643 with :
5744 name : DeadNet-APK
58- path : |
59- android-app/app/build/outputs/apk/release/*.apk
60- ${{ steps.sign_app.outputs.signedReleaseFile }}
45+ path : android-app/app/build/outputs/apk/**/*.apk
6146
6247 - name : Release
6348 uses : softprops/action-gh-release@v1
6449 if : startsWith(github.ref, 'refs/tags/')
6550 with :
66- files : |
67- android-app/app/build/outputs/apk/release/*.apk
51+ files : android-app/app/build/outputs/apk/debug/*.apk
6852 env :
6953 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments