chore: enhance workflow
This commit is contained in:
parent
2b3acb31e4
commit
2f904a6aa6
|
@ -9,7 +9,7 @@ jobs:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Update major tag
|
- name: Update major tag
|
||||||
if: github.event.release.prerelease == false
|
if: github.event.release.prerelease == false
|
||||||
|
@ -19,6 +19,6 @@ 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 ":refs/tags/${TAG_MAJOR}"
|
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 tag "${TAG_MAJOR}" -m "Release ${TAG_NAME}" || true
|
||||||
git push --tags origin
|
git push --tags origin
|
||||||
|
|
Loading…
Reference in New Issue