We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f49d0f2 commit db1dd93Copy full SHA for db1dd93
utils/publish-release.sh
@@ -68,8 +68,8 @@ git fetch
68
git checkout main
69
git pull "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/aws/aws-iot-device-sdk-cpp-v2.git" main
70
71
-# Create new tag on latest commit with the release title
72
-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}
73
# Push new tag to github
74
git push "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/aws/aws-iot-device-sdk-cpp-v2.git" --tags
75
0 commit comments