Skip to content

Commit 50d89f4

Browse files
authored
Create main.yml
1 parent 0a8ae12 commit 50d89f4

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/main.yml

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

0 commit comments

Comments
 (0)