Skip to content

Commit 4ecdf21

Browse files
committed
Add latest-tag
1 parent 9fe9331 commit 4ecdf21

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/latest.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Add latest tag to new release
2+
on:
3+
release:
4+
types: [published]
5+
6+
jobs:
7+
run:
8+
name: Add/update tag to new release
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@master
14+
15+
- name: Run latest-tag
16+
uses: EndBug/latest-tag@latest
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)