Skip to content

Commit 6c409da

Browse files
Merge pull request #50 from raideer/feature/release-action
feat: auto bump release
2 parents 612a368 + 69b8a76 commit 6c409da

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Auto bump version
2+
on:
3+
push:
4+
branches:
5+
- release
6+
7+
jobs:
8+
version:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
- name: Use Node.js 20.x
14+
uses: actions/setup-node@v3
15+
with:
16+
node-version: 20.x
17+
- run: npm install
18+
- name: Bumping version
19+
id: bump
20+
uses: jpb06/bump-package@latest
21+
with:
22+
major-keywords: breaking,major
23+
minor-keywords: feat,minor
24+
patch-keywords: fix,chore

0 commit comments

Comments
 (0)