From f21cef4446db8a2c47e78208d14acc25c3f5cf51 Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Sat, 14 Dec 2019 21:27:59 +0900 Subject: [PATCH] chore: fix tag push --- .github/workflows/update-major-tag.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-major-tag.yml b/.github/workflows/update-major-tag.yml index 6cd77cc..288765e 100644 --- a/.github/workflows/update-major-tag.yml +++ b/.github/workflows/update-major-tag.yml @@ -21,4 +21,4 @@ jobs: export TAG_MAJOR="${TAG_NAME%%.*}" git tag "${TAG_MAJOR}" -m "Release ${TAG_NAME}" || git tag -d "${TAG_MAJOR}" ; git push origin --delete "${TAG_MAJOR}" git tag "${TAG_MAJOR}" -m "Release ${TAG_NAME}" || true - git push --tags origin + git push origin "${TAG_MAJOR}"