Skip to content

Commit 9368963

Browse files
committed
add new workflow
1 parent ef92a12 commit 9368963

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/bump.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Bump version
2+
on:
3+
workflow_dispatch
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
with:
10+
fetch-depth: '0'
11+
- name: Bump version and push tag
12+
uses: anothrNick/github-tag-action@1.26.0
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
WITH_V: true
16+
DEFAULT_BUMP: patch

0 commit comments

Comments
 (0)