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 315d34c commit 6dc68ceCopy full SHA for 6dc68ce
1 file changed
.github/workflows/publish.yml
@@ -0,0 +1,27 @@
1
+name: Publish Package
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
8
+permissions:
9
+ id-token: write
10
+ contents: read
11
12
+jobs:
13
+ publish:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v6
17
18
+ - uses: actions/setup-node@v6
19
+ with:
20
+ node-version: '24'
21
+ registry-url: 'https://registry.npmjs.org'
22
+ package-manager-cache: false
23
24
+ - run: npm install
25
+ - run: npm run build --if-present
26
+ - run: npm test
27
+ - run: npm publish
0 commit comments