Skip to content

Commit dafb486

Browse files
committed
feat: Add semantic release configuration
Closes #2
1 parent abc0a4f commit dafb486

File tree

5 files changed

+7706
-0
lines changed

5 files changed

+7706
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Release
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
release:
8+
name: Release
9+
runs-on: ubuntu-18.04
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v1
13+
- name: install
14+
run: npm install
15+
- name: Release
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
18+
run: npx semantic-release

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.netrwhist
22
Session.vim
33
.ctags
4+
node_modules

.releaserc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"repositoryUrl": "https://github.com/sheoak/sheoak-neovim.git",
3+
"npmPublish": false,
4+
"debug": false
5+
}

0 commit comments

Comments
 (0)