Skip to content

Commit e0ca3ef

Browse files
committed
feat(ci): add releaser CI to automate semver
1 parent ef5c9e1 commit e0ca3ef

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/release.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Release Please Automatic Semver
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
release:
14+
name: release
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: google-github-actions/release-please-action@v3
18+
with:
19+
release-type: simple
20+
package-name: rest.nvim

0 commit comments

Comments
 (0)