Skip to content

Commit

Permalink
allow slow types in release
Browse files Browse the repository at this point in the history
  • Loading branch information
wrnrlr committed Oct 10, 2024
1 parent 9f7e0ec commit 5ed98d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish
on:
push:
branches:
- main
- release

jobs:
publish:
Expand All @@ -13,4 +13,4 @@ jobs:
id-token: write # The OIDC ID token is used for authentication with JSR.
steps:
- uses: actions/checkout@v4
- run: npx jsr publish
- run: deno task release
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"test": "deno test -A --unstable-sloppy-imports ./test/*.[jt]s",
"docs": "deno run -A npm:typedoc",
"build": "deno run -A npm:typedoc && deno run -A npm:vite@^5.4.2 build",
"release": "deno publish && npm publish --access public",
"release": "deno publish --allow-slow-types --allow-dirty && npm publish --access public",
"clean": "rm -rf node_modules/ dist/"
}
}

0 comments on commit 5ed98d2

Please sign in to comment.