We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8557c8 commit 76262e3Copy full SHA for 76262e3
1 file changed
.github/workflows/publish.yml
@@ -0,0 +1,22 @@
1
+name: Publish to npmjs
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - v*
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - uses: actions/setup-node@v3
14
+ with:
15
+ node-version: '18'
16
+ registry-url: 'https://registry.npmjs.org'
17
+ - uses: pnpm/action-setup@v2
18
19
+ version: 8
20
+ - run: pnpm i && pnpm publish --no-git-checks
21
+ env:
22
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments