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 132bb3c commit 909ce37Copy full SHA for 909ce37
.github/workflows/publish.yml
@@ -48,10 +48,15 @@ jobs:
48
run: npm config set registry https://registry.npmjs.org
49
50
- name: Install dependencies
51
- run: bun install --ignore-scripts
+ run: bun install
52
53
- name: Build
54
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)
60
61
- name: Publish
62
run: bun run script/publish.ts
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "oh-my-opencode",
3
- "version": "0.1.4",
+ "version": "0.1.5",
4
"description": "OpenCode plugin - custom agents (oracle, librarian) and enhanced features",
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
0 commit comments