Skip to content

Commit 7d9211b

Browse files
committed
feat: Update release action to use marvinpinto/action-automatic-releases for better automation
1 parent 2520146 commit 7d9211b

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/master-apk.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,10 @@ jobs:
2727
- name: Build with Gradle
2828
run: ./gradlew assembleDebug
2929

30-
- name: Create Release
31-
uses: ncipollo/[email protected]
30+
- uses: "marvinpinto/action-automatic-releases@latest"
3231
with:
33-
tag: "latest-master"
34-
generateReleaseNotes: true
35-
commit: "master"
36-
allowUpdates: true
37-
artifacts: "app/build/outputs/apk/debug/*.apk"
38-
makeLatest: true
32+
repo_token: "${{ github.token }}"
33+
automatic_release_tag: "latest-master"
34+
prerelease: true
35+
title: "Latest Master Build"
36+
files: app/build/outputs/apk/debug/*.apk

0 commit comments

Comments
 (0)