We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e6972c commit b63b0b8Copy full SHA for b63b0b8
2 files changed
.github/workflows/release-to-jsr.yml
.github/workflows/release.yml
@@ -5,9 +5,26 @@ on:
5
branches: [master]
6
7
jobs:
8
- release:
9
- name: Node.js
+ release-to-npm:
+ name: NPM
10
uses: node-modules/github-actions/.github/workflows/node-release.yml@master
11
secrets:
12
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
13
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
14
+
15
+ release-to-jsr:
16
+ name: JSR
17
+ runs-on: ubuntu-latest
18
19
+ permissions:
20
+ contents: read
21
+ id-token: write
22
23
+ needs:
24
+ - release-to-npm
25
26
+ steps:
27
+ - uses: actions/checkout@v4
28
29
+ - name: Publish package
30
+ run: npx jsr publish
0 commit comments