Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
chore: Add workflow
- Loading branch information
peaceiris
committed
Dec 22, 2019
1 parent
1e0de0f
commit b8c0499
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Update major tag | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
update: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
- name: Update major tag | ||
if: github.event.release.prerelease == false | ||
run: | | ||
git config user.name "${GITHUB_ACTOR}" | ||
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | ||
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_MAJOR="${TAG_NAME%%.*}" | ||
git tag "${TAG_MAJOR}" -m "Release ${TAG_NAME}" || git tag -d "${TAG_MAJOR}" ; git push --delete origin "${TAG_MAJOR}" | ||
git tag "${TAG_MAJOR}" -m "Release ${TAG_NAME}" || true | ||
git push origin "${TAG_MAJOR}" |