Skip to content

Commit

Permalink
[#1088] Revert release tag prefix v
Browse files Browse the repository at this point in the history
Each go module version starts with the letter v, followed by a semantic version.
See https://go.dev/ref/mod
  • Loading branch information
brusdev committed Jan 29, 2025
1 parent 7f03be4 commit 25509a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: |
git fetch --tags --force
HEAD_COMMIT="$(git rev-parse HEAD)"
RELEASE_TAG="$(grep -m 1 -oP '(?<=Version = ")[^"]+' version/version.go)"
RELEASE_TAG="v$(grep -m 1 -oP '(?<=Version = ")[^"]+' version/version.go)"
RELEASE_TAG_COMMIT="$(git rev-list -n 1 ${RELEASE_TAG} || true)"
if [ "$RELEASE_TAG_COMMIT" != "$HEAD_COMMIT" ]; then
git config user.name 'arkmq-bot'
Expand Down

0 comments on commit 25509a2

Please sign in to comment.