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 d9c3508 commit 709d29aCopy full SHA for 709d29a
utils/publish-release.sh
@@ -64,8 +64,8 @@ git fetch
64
git checkout main
65
git pull "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/aws/aws-iot-device-sdk-js-v2.git" main
66
67
-# Create new tag on latest commit with the release title
68
-git tag -f v${new_version} -m "${RELEASE_TITLE}"
+# Create new tag on latest commit (lightweight tag - we do NOT want an annotated tag)
+git tag -f v${new_version}
69
# Push new tag to github
70
git push "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/aws/aws-iot-device-sdk-js-v2.git" --tags
71
0 commit comments