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",