Skip to content

Commit a9ca481

Browse files
authored
Fixed the release/publishing CI (#158)
2 parents 7f661c8 + 0b27412 commit a9ca481

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,10 @@ jobs:
102102

103103
publish:
104104
name: Publish
105-
needs: build
105+
needs:
106+
- build
107+
- test
108+
- test-deno
106109
if: github.event_name == 'release'
107110
runs-on: ubuntu-latest
108111
permissions:
@@ -135,7 +138,7 @@ jobs:
135138
name: .name,
136139
version: .version,
137140
license: .license,
138-
exports: "src/index.ts"
141+
exports: "./src/index.ts"
139142
}' package.json > jsr.json
140143
141144
- name: Publish to JSR

0 commit comments

Comments
 (0)