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 b30cb77 commit 1b5ae60Copy full SHA for 1b5ae60
1 file changed
.github/workflows/jsr.yml
@@ -11,9 +11,25 @@ jobs:
11
permissions:
12
contents: read
13
id-token: write
14
+
15
steps:
16
- uses: actions/checkout@v5
17
+ with:
18
+ fetch-depth: 10
19
20
+ - uses: denoland/setup-deno@v2
21
22
+ deno-version: v2.x
23
24
+ - uses: actions/cache@v4
25
+ name: Set up Deno cache
26
27
+ path: |
28
+ ~/.deno
29
+ ~/.cache/deno
30
+ key: ${{ runner.os }}-deno-${{ hashFiles('**/pnpm-lock.yaml') }}
31
32
- run: |
- npx jsr install --pnpm
- npx jsr publish --dry-run
- npx jsr publish
33
+ deno install --pnpm
34
+ deno publish --dry-run
35
+ deno publish
0 commit comments