We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dc5dd62 + 1690ca6 commit 959f79fCopy full SHA for 959f79f
1 file changed
.github/workflows/publish.yml
@@ -0,0 +1,20 @@
1
+name: Publish Package
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
8
+jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-node@v4
14
+ with:
15
+ node-version: 24
16
+ registry-url: https://registry.npmjs.org/
17
+ - run: npm ci
18
+ - run: npm publish --access public
19
+ env:
20
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments