Skip to content

Commit 69bfd0c

Browse files
authored
Create bump-version.yml
1 parent 86c849c commit 69bfd0c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/bump-version.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
name: Bump version
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@master
13+
with:
14+
fetch-depth: '0'
15+
- name: Bump version and push tag
16+
uses: anothrNick/github-tag-action@master
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+
RELEASE_BRANCHES: master
20+
DEFAULT_BUMP: patch
21+
WITH_V: false

0 commit comments

Comments
 (0)