Skip to content

Commit 4bc36ce

Browse files
authored
ci: add automatic latest release tag action (#35)
1 parent 407b041 commit 4bc36ce

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/release-tagger.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Keep the versions up-to-date
2+
3+
on:
4+
release:
5+
types: [published, edited]
6+
7+
jobs:
8+
actions-tagger:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: Actions-R-Us/actions-tagger@latest
12+
env:
13+
GITHUB_TOKEN: "${{ github.token }}"
14+
with:
15+
publish_latest_tag: true

0 commit comments

Comments
 (0)