Skip to content

Commit 535f3ce

Browse files
committed
fix 'v' prefix
1 parent fb5d66a commit 535f3ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/cut-release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ jobs:
4040
MINOR=$(echo $NEW_TAG | cut -d. -f2)
4141
4242
# Create and push vMAJOR and vMAJOR.MINOR tags
43-
git tag "v${MAJOR}"
44-
git tag "v${MAJOR}.${MINOR}"
45-
git push origin "v${MAJOR}" "v${MAJOR}.${MINOR}"
43+
git tag "${MAJOR}"
44+
git tag "${MAJOR}.${MINOR}"
45+
git push origin "${MAJOR}" "${MAJOR}.${MINOR}"
4646
env:
4747
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}
4848

0 commit comments

Comments
 (0)