We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20f0a2d commit 704432aCopy full SHA for 704432a
.github/workflows/release.yml
@@ -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