Skip to content

Commit

Permalink
build: on release, also create a major version tag (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 committed Apr 21, 2021
1 parent 7b63195 commit b2f440c
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
on:
release:
types: [published]
name: release
jobs:
update-major:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v3
id: parse-major
with:
script: |
const ref = context.payload.release.tag_name;
const versionRegex = new RegExp('v?(\\d+)\\.\\d+\\.\\d+');
const match = ref.match(versionRegex);
if (match) {
return "v" + match[1];
}
return "";
result-encoding: string
- uses: actions/checkout@v2
with:
fetch-depth: 0
if: ${{ steps.parse-major.outputs.result }}
- name: delete existing major tag
run: |
(git tag -d ${{ steps.parse-major.outputs.result }} && git push origin :${{ steps.parse-major.outputs.result }}) || true
if: ${{ steps.parse-major.outputs.result }}
- name: create major tag
run: |
git tag ${{ steps.parse-major.outputs.result }} ${{ github.event.GITHUB_REF }}
git push origin --tags
if: ${{ steps.parse-major.outputs.result }}

0 comments on commit b2f440c

Please sign in to comment.