chore: Add workflow to keep major tags up-to-date
This commit is contained in:
parent
b01c276b7e
commit
66628a83db
1 changed files with 13 additions and 0 deletions
13
.github/workflows/new-release.yml
vendored
Normal file
13
.github/workflows/new-release.yml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
name: Release new version
|
||||
on:
|
||||
release:
|
||||
types: [released]
|
||||
permissions:
|
||||
contents: write
|
||||
jobs:
|
||||
update-major-tag:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/publish-action@v0.2.2
|
||||
with:
|
||||
source-tag: ${{ github.event.release.tag_name }}
|
Loading…
Reference in a new issue