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 aa14f92 commit 41c42deCopy full SHA for 41c42de
1 file changed
.github/workflows/publish-stable-release.yml
@@ -0,0 +1,31 @@
1
+name: publish-stable
2
+
3
+on:
4
+ release:
5
+ types: [released]
6
7
+jobs:
8
+ publish:
9
+ runs-on: ${{ matrix.os }}
10
11
+ strategy:
12
+ matrix:
13
+ os: [ubuntu-latest]
14
+ node: [16]
15
+ fail-fast: true
16
17
+ steps:
18
+ - name: Setup Node.js
19
+ uses: actions/setup-node@v2
20
+ with:
21
+ node-version: ${{ matrix.node }}
22
+ registry-url: https://registry.npmjs.org/
23
24
+ - name: checkout
25
+ uses: actions/checkout@v2
26
27
+ - name: Publish BETA build
28
+ run: npm publish --access public
29
+ env:
30
+ NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN_SECRET}}
31
0 commit comments