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 c19bbba commit 2a6d0feCopy full SHA for 2a6d0fe
.github/workflows/goreleaser.yml
@@ -32,3 +32,6 @@ jobs:
32
env:
33
# Use separate access token, because we need a scope:repo token to publish the brew formula.
34
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
35
+ # And tag latest, once the release is done.
36
+ - run: git tag latest -f -a -m "release v${GITHUB_REF##*/}"
37
+ - run: git push -f --tags
release.sh
@@ -9,5 +9,4 @@ fi
9
10
# Push a new tag, this will trigger the goreleaser workflow in .github/workflows/goreleaser.yml
11
git tag "${VERSION}" -a -m "release v${VERSION}"
12
-git tag latest -f -a -m "release v${VERSION}"
13
git push -f --tags
0 commit comments