Skip to content

Commit

Permalink
Merge pull request enriikke#49 from iranzo/updatesemver
Browse files Browse the repository at this point in the history
Add GHA for updating tags when a new version is released
  • Loading branch information
enriikke committed Apr 15, 2021
2 parents bf3ba06 + b4df5f0 commit 9f30593
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/update_semver.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Update Semver
on:
push:
tags:
- 'v*.*.*'
release:
types:
- published

jobs:
update-semver:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: haya14busa/action-update-semver@v1
with:
major_version_tag_only: false # (optional, default is "false")

0 comments on commit 9f30593

Please sign in to comment.