Skip to content

Commit 9dea70a

Browse files
authored
fix(cd): allow publish of formatted/converted code (#498)
Current JSR package is lagging behind because this job has been failing due to the uncommitted change check, which clashes with formatting & converting steps.
1 parent 256fb86 commit 9dea70a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish_jsr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ jobs:
4646

4747
- name: Publish (dry run)
4848
if: startsWith(github.ref, 'refs/tags/') == false
49-
run: deno publish --dry-run
49+
run: deno publish --dry-run --allow-dirty
5050

5151
- name: Publish (real)
5252
if: startsWith(github.ref, 'refs/tags/')
53-
run: deno publish
53+
run: deno publish --allow-dirty

0 commit comments

Comments
 (0)