5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-09 16:20:26 +00:00

CircleCI: don't recreate tags that already exist

This commit is contained in:
Neil Alexander 2018-12-18 11:47:46 +00:00
parent 429d014d1c
commit 5684279403
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

View File

@ -103,7 +103,7 @@ jobs:
name: Create tags (master branch only)
command: >
if [ "${CIRCLE_BRANCH}" == "master" ]; then
git tag -f -a $(sh contrib/semver/version.sh) -m "Created by CircleCI" && git push -f --tags;
git tag -a $(sh contrib/semver/version.sh) -m "Created by CircleCI" && git push --tags;
else
echo "Only runs for master branch (this is ${CIRCLE_BRANCH})";
fi;