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 ad6088b commit 9c78852Copy full SHA for 9c78852
1 file changed
.github/workflows/publish.yml
@@ -0,0 +1,20 @@
1
+name: Publish Package to npmjs
2
+on:
3
+ push:
4
+ tags:
5
+ - "v*"
6
+
7
+permissions:
8
+ id-token: write
9
+ contents: read
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: actions/setup-node@v4
17
+ with:
18
+ node-version: '24'
19
+ registry-url: 'https://registry.npmjs.org'
20
+ - run: npm publish --provenance
0 commit comments