Skip to content

Commit 6afc377

Browse files
authored
Fix tag deletion command (#4892)
1 parent 1d99321 commit 6afc377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildspecs/release-to-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ phases:
2323
- git remote add --fetch public $PUBLIC_REPOSITORY_URL
2424
- |
2525
if [ `git ls-remote --tags public | grep refs/tags/$RELEASE_VERSION | wc -l` -ge "1" ]; then
26-
git push -d public :refs/tags/$RELEASE_VERSION
26+
git push public :refs/tags/$RELEASE_VERSION
2727
fi
2828
- git tag -a $RELEASE_VERSION -m "AWS SDK for Java v2 ($RELEASE_VERSION)"
2929
-

0 commit comments

Comments
 (0)