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.
2 parents f6db824 + 6c638f9 commit 4d3184bCopy full SHA for 4d3184b
.github/workflows/deploy.yml
@@ -26,7 +26,12 @@ jobs:
26
cache: "npm"
27
- run: npm ci
28
- run: npm run build --if-present
29
- - run: node .github/scripts/update-jsr.mjs ${TAG_NAME}
+ - run: |
30
+ cp jsr.json jsr.json.old
31
+ jq ".version = \"${TAG_NAME}\"' jsr.json.old > jsr.json
32
+ rm jsr.json.old
33
+ env:
34
+ TAG_NAME: ${{ github.event.release.tag_name }}
35
- run: npx jsr publish --allow-dirty
36
- run: npm version ${TAG_NAME} --git-tag-version=false
37
env:
0 commit comments