Skip to content

Commit 709d29a

Browse files
Only make lightweight tags in CD (#321)
1 parent d9c3508 commit 709d29a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/publish-release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ git fetch
6464
git checkout main
6565
git pull "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/aws/aws-iot-device-sdk-js-v2.git" main
6666

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

0 commit comments

Comments
 (0)