Skip to content

Commit db1dd93

Browse files
Only make lightweight tags in CD (#523)
1 parent f49d0f2 commit db1dd93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/publish-release.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ git fetch
6868
git checkout main
6969
git pull "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/aws/aws-iot-device-sdk-cpp-v2.git" main
7070

71-
# Create new tag on latest commit with the release title
72-
git tag -f v${new_version} -m "${RELEASE_TITLE}"
71+
# Create new tag on latest commit (lightweight tag - we do NOT want an annotated tag)
72+
git tag -f v${new_version}
7373
# Push new tag to github
7474
git push "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/aws/aws-iot-device-sdk-cpp-v2.git" --tags
7575

0 commit comments

Comments
 (0)