We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb5d66a commit 535f3ceCopy full SHA for 535f3ce
.github/workflows/cut-release.yaml
@@ -40,9 +40,9 @@ jobs:
40
MINOR=$(echo $NEW_TAG | cut -d. -f2)
41
42
# 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}"
+ git tag "${MAJOR}"
+ git tag "${MAJOR}.${MINOR}"
+ git push origin "${MAJOR}" "${MAJOR}.${MINOR}"
46
env:
47
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}
48
0 commit comments