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 a9df899 commit 542920eCopy full SHA for 542920e
.github/workflows/publish.yml
@@ -0,0 +1,23 @@
1
+name: "Publish"
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ release:
10
+ name: Build and publish
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v2
15
+ - name: Setup node.js
16
+ uses: actions/setup-node@v1
17
+ with:
18
+ node-version: "10.x"
19
+ registry-url: "https://registry.npmjs.org"
20
+ - run: yarn install
21
+ - run: yarn publish
22
+ env:
23
+ NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
.github/workflows/test.yml
@@ -4,7 +4,6 @@ on:
pull_request:
branches:
- master
- - develop
jobs:
release:
0 commit comments