Commit bb730f2
authored
Hotfix: Fix semantic-release workflow (#47)
## Summary
The postinstall script (bun run scripts/package/patch-native-modules.ts)
patches native modules for cross-platform binary builds. The
semantic-release workflow uses npm ci, which triggers this script.
However, bun isn't installed in that workflow, and the patching is
irrelevant for semantic-release (it only bumps versions and creates
tags).
Adding `--ignore-scripts` to npm ci skips all lifecycle scripts in the
semantic-release workflow. Other workflows (ci.yaml, release.yaml) are
unaffected as they use bun install.1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
| 43 | + | |
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
| |||
0 commit comments