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.
2 parents 2e5a09d + 2227921 commit dd5f088Copy full SHA for dd5f088
.github/workflows/publish.yml
@@ -0,0 +1,25 @@
1
+name: "Automatic Releaser"
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout
12
+ uses: actions/checkout@v3
13
+ with:
14
+ fetch-depth: 0
15
16
+ - name: Setup node
17
+ uses: actions/setup-node@v3
18
19
+ node-version: '16'
20
+ registry-url: 'https://registry.npmjs.org'
21
+ - run: npm ci
22
+ - run: npm run build
23
+ - run: npm publish
24
+ env:
25
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments