Skip to content

Commit e160f96

Browse files
authored
Create main.yml
1 parent 3c313ed commit e160f96

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/main.yml

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

0 commit comments

Comments
 (0)