fix: remove --ignore-scripts from bun install, add build verification step

This commit is contained in:
YeonGyu-Kim
2025-12-05 04:19:13 +09:00
parent 132bb3c373
commit 909ce37826
2 changed files with 7 additions and 2 deletions

View File

@@ -48,10 +48,15 @@ jobs:
run: npm config set registry https://registry.npmjs.org
- name: Install dependencies
run: bun install --ignore-scripts
run: bun install
- name: Build
run: bun run build
- name: Verify build output
run: |
ls -la dist/
test -f dist/index.js || (echo "ERROR: dist/index.js not found!" && exit 1)
- name: Publish
run: bun run script/publish.ts

View File

@@ -1,6 +1,6 @@
{
"name": "oh-my-opencode",
"version": "0.1.4",
"version": "0.1.5",
"description": "OpenCode plugin - custom agents (oracle, librarian) and enhanced features",
"main": "dist/index.js",
"types": "dist/index.d.ts",