We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3cea59 commit 41918afCopy full SHA for 41918af
.github/workflows/publish.yml
@@ -43,7 +43,10 @@ jobs:
43
registry-url: "https://registry.npmjs.org"
44
45
- name: Install dependencies
46
- run: bun install
+ run: bun install --ignore-scripts
47
+
48
+ - name: Build
49
+ run: bun run build
50
51
- name: Publish
52
run: bun run script/publish.ts
script/publish.ts
@@ -62,9 +62,6 @@ async function generateChangelog(previous: string): Promise<string> {
62
}
63
64
async function buildAndPublish(): Promise<void> {
65
- console.log("Building...")
66
- await $`bun run build`
67
-
68
console.log("\nPublishing to npm...")
69
if (process.env.CI) {
70
await $`npm publish --access public --provenance`
0 commit comments