Skip to content

Commit 4191976

Browse files
authored
add tag updater
1 parent 9390aca commit 4191976

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/update-tags.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Update tags
2+
on:
3+
release:
4+
types: [released]
5+
concurrency:
6+
group: ${{ github.workflow }}
7+
cancel-in-progress: true
8+
permissions:
9+
contents: write
10+
jobs:
11+
update-tags:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/publish-action@v0.2.2
15+
with:
16+
source-tag: ${{ github.event.release.tag_name }}

0 commit comments

Comments
 (0)