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 0d604b7 commit d9c008bCopy full SHA for d9c008b
.github/workflows/android.yml
@@ -51,3 +51,13 @@ jobs:
51
path: |
52
app/build/outputs/apk/universal/release
53
app/build/outputs/mapping/universalRelease/mapping.txt
54
+
55
+ - name: Create AutoBuild Release
56
+ run: |
57
+ GIT_DESCRIBE=$(git rev-parse --short HEAD)
58
+ cd app/build/outputs/apk/universal/release/
59
+ mv app-universal-release.apk ReVancedXposed-${GIT_DESCRIBE}.apk
60
+ gh release delete autobuild --yes || true
61
+ gh release create autobuild ReVancedXposed-${GIT_DESCRIBE}.apk --prerelease --title "AutoBuild ${GIT_DESCRIBE}"
62
+ env:
63
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments