From 6840af5442a76bbefca687087c9c758094df4301 Mon Sep 17 00:00:00 2001 From: Casey Marshall Date: Fri, 24 Nov 2017 22:52:37 -0600 Subject: [PATCH] Ignore tag errors. TODO: better idempotency --- release.bash | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/release.bash b/release.bash index 9e4aca7..6f3eb67 100755 --- a/release.bash +++ b/release.bash @@ -15,7 +15,6 @@ git reset git add snap/snapcraft.yaml git commit -m "Release snapcraft ${VERSION}" || true -git tag -s -a "v${VERSION}" -m "Release ${VERSION}" -git push origin "v${VERSION}" +git tag -s -a "v${VERSION}" -m "Release ${VERSION}" && git push origin "v${VERSION}" || true goreleaser