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 97e2152 commit c3732f4Copy full SHA for c3732f4
.github/workflows/npm-publish.yml
@@ -5,7 +5,7 @@ name: Node.js Package
5
6
on:
7
release:
8
- types: [created]
+ types: [created, workflow_dispatch]
9
10
jobs:
11
build:
@@ -33,3 +33,16 @@ jobs:
33
- run: npm publish
34
env:
35
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
36
+
37
+ publish-jsr:
38
+ runs-on: ubuntu-latest
39
40
+ permissions:
41
+ contents: read
42
+ id-token: write
43
44
+ steps:
45
+ - uses: actions/checkout@v4
46
47
+ - name: Publish package
48
+ run: npx jsr publish
0 commit comments