mirror of
https://github.com/peaceiris/actions-hugo.git
synced 2026-01-24 20:12:15 +01:00
ci: Enhance tag creation
This commit is contained in:
5
.github/workflows/update-major-tag.yml
vendored
5
.github/workflows/update-major-tag.yml
vendored
@@ -19,6 +19,5 @@ jobs:
|
|||||||
git remote set-url origin "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git"
|
git remote set-url origin "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git"
|
||||||
export TAG_NAME="${GITHUB_REF##refs/tags/}"
|
export TAG_NAME="${GITHUB_REF##refs/tags/}"
|
||||||
export TAG_MAJOR="${TAG_NAME%%.*}"
|
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 --force -a "${TAG_MAJOR}" -m "Release ${TAG_NAME}"
|
||||||
git tag "${TAG_MAJOR}" -m "Release ${TAG_NAME}" || true
|
git push --force origin "${TAG_MAJOR}"
|
||||||
git push origin "${TAG_MAJOR}"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user