Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
JLarky committed Dec 8, 2024
1 parent ec581db commit d6e7753
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- hotfix-npm
tags:
- "**"
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion scripts/publish_npm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const dryRun = Deno.args.includes("--dry-run");

await $`./build_core.ts`;

if (dryRun) {
if (dryRun && false) {
await $`cd ../packages/core/npm/; npm publish --dry-run`;
} else {
await $`cd ../packages/core/npm/; npm publish --access=public`;
Expand Down

0 comments on commit d6e7753

Please sign in to comment.