We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fb2ff0 commit 7092749Copy full SHA for 7092749
.github/workflows/apk.yml
@@ -41,9 +41,15 @@ jobs:
41
name: app
42
path: app/build/outputs/apk/debug/app-debug.apk
43
44
+ - name: Bump version and push tag
45
+ id: tag_version
46
+ uses: mathieudutour/github-tag-action@v5.6
47
+ with:
48
+ github_token: ${{ secrets.GITHUB_TOKEN }}
49
+
50
- name: go-semantic-release
51
uses: marvinpinto/action-automatic-releases@v1.2.1
52
with:
- automatic_release_tag: ${{ steps.get_version.outputs.VERSION }}
53
+ automatic_release_tag: ${{ steps.tag_version.outputs.new_tag }}
54
repo_token: ${{ secrets.GITHUB_TOKEN }}
55
files: app/build/outputs/apk/debug/app-debug.apk
0 commit comments