mirror of
https://github.com/yggdrasil-network/yggdrasil-go
synced 2024-11-09 23:20:26 +03:00
Don't fail if tag exists
This commit is contained in:
parent
b2fcf130b9
commit
3283de17d5
@ -103,7 +103,7 @@ jobs:
|
|||||||
name: Create tags (master branch only)
|
name: Create tags (master branch only)
|
||||||
command: >
|
command: >
|
||||||
if [ "${CIRCLE_BRANCH}" == "master" ]; then
|
if [ "${CIRCLE_BRANCH}" == "master" ]; then
|
||||||
git tag -a $(sh contrib/semver/version.sh) -m "Created by CircleCI" && git push --tags;
|
(git tag -a $(sh contrib/semver/version.sh) -m "Created by CircleCI" && git push --tags) || true;
|
||||||
else
|
else
|
||||||
echo "Only runs for master branch (this is ${CIRCLE_BRANCH})";
|
echo "Only runs for master branch (this is ${CIRCLE_BRANCH})";
|
||||||
fi;
|
fi;
|
||||||
|
Loading…
Reference in New Issue
Block a user