Skip to content

Commit 909ce37

Browse files
committed
fix: remove --ignore-scripts from bun install, add build verification step
1 parent 132bb3c commit 909ce37

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,15 @@ jobs:
4848
run: npm config set registry https://registry.npmjs.org
4949

5050
- name: Install dependencies
51-
run: bun install --ignore-scripts
51+
run: bun install
5252

5353
- name: Build
5454
run: bun run build
55+
56+
- name: Verify build output
57+
run: |
58+
ls -la dist/
59+
test -f dist/index.js || (echo "ERROR: dist/index.js not found!" && exit 1)
5560
5661
- name: Publish
5762
run: bun run script/publish.ts

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oh-my-opencode",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "OpenCode plugin - custom agents (oracle, librarian) and enhanced features",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)