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 465445f commit 0d3be0dCopy full SHA for 0d3be0d
.github/workflows/build.yml
@@ -24,13 +24,16 @@ jobs:
24
go-version: 1.14
25
- name: Build
26
run: make all
27
- - name: Bump version and push tag
+ - id: git-auto-tag
28
+ name: Bump version and push tag
29
uses: anothrNick/[email protected]
30
if: github.ref == 'refs/heads/master'
31
env:
32
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
WITH_V: true
34
DEFAULT_BUMP: patch
35
+ - run: git tag ${{ steps.git-auto-tag.outputs.new_tag }}
36
+ if: github.ref == 'refs/heads/master'
37
- name: Release
38
39
run: make release
0 commit comments