From 909ce37826adbf1797f1cea59d03cbcd8e5de86c Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Fri, 5 Dec 2025 04:19:13 +0900 Subject: [PATCH] fix: remove --ignore-scripts from bun install, add build verification step --- .github/workflows/publish.yml | 7 ++++++- package.json | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 35fe95d..3c8b455 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 diff --git a/package.json b/package.json index 921c3b6..752283b 100644 --- a/package.json +++ b/package.json @@ -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",