We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 26cdbe2 + 63b6da7 commit 6af558bCopy full SHA for 6af558b
.github/workflows/npm-publish.yml
@@ -0,0 +1,31 @@
1
+# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
+# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3
+
4
+name: Publish Package
5
6
+on:
7
+ push:
8
+ branches:
9
+ - main
10
11
+jobs:
12
+ publish:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout code
17
+ uses: actions/checkout@v2
18
19
+ - name: Set up Node.js
20
+ uses: actions/setup-node@v2
21
+ with:
22
+ node-version: '14'
23
+ registry-url: 'https://registry.npmjs.org/'
24
25
+ - name: Install dependencies
26
+ run: npm install
27
28
+ - name: Publish to npm
29
+ run: npm publish
30
+ env:
31
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments