Skip to content

Commit a0f72d8

Browse files
authored
automatically tag a release when version changes (#170)
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
1 parent 5ad5d6a commit a0f72d8

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/tag-release.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Create Publish Tag
2+
on:
3+
push:
4+
branches:
5+
- main
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: butlerlogic/action-autotag@stable
12+
with:
13+
strategy: package
14+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
15+
tag_prefix: "v"

0 commit comments

Comments
 (0)