Skip to content

Commit 704432a

Browse files
authored
feat: Adds GitHub Action for releases (#426)
1 parent 20f0a2d commit 704432a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: Publish New Release
5+
6+
on:
7+
push:
8+
branches: [ master ]
9+
10+
jobs:
11+
publish:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Use Node.js
18+
uses: actions/setup-node@v1
19+
with:
20+
node-version: '14.x'
21+
- run: yarn install
22+
- run: yarn semantic-release

0 commit comments

Comments
 (0)