Skip to content

Commit 410cd0d

Browse files
authored
Add workflow to bump tag on master (#4)
1 parent 7359013 commit 410cd0d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/generate-tag.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Generate Tag
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
generate-tag:
10+
name: Generate tag
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@master
14+
- name: Bump version and push tag
15+
uses: anothrNick/[email protected]
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
WITH_V: true

0 commit comments

Comments
 (0)