-
Notifications
You must be signed in to change notification settings - Fork 238
chore: fix publish workflow #706
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,4 +13,8 @@ jobs: | |
| id-token: write | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - run: npx jsr publish | ||
| - name: install deno | ||
| uses: denoland/setup-deno@v2 | ||
| with: | ||
| deno-version: 2.x | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Version mismatch between CI and publish workflowsThe CI workflow tests with Additional Locations (1) |
||
| - run: deno publish | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Publish workflow is failing because the jsr binary is pinned to an old version of Deno and that pulls in an old
@types/nodeversion :/jsr-io/jsr-npm#130