Skip to content

Commit e099e35

Browse files
author
Test User
committed
fix: disable npm publish step until package structure is complete
The npm publish step requires bin/doplan.js which doesn't exist yet. Temporarily disable it so the release workflow can complete successfully. The GoReleaser release is working correctly and creating all binaries. TODO: Set up npm package structure with bin/doplan.js before enabling
1 parent 37367d4 commit e099e35

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ jobs:
5656
name: Publish to npm
5757
runs-on: ubuntu-latest
5858
needs: release
59-
if: startsWith(github.ref, 'refs/tags/v')
59+
if: false # Disabled until npm package structure is complete (bin/doplan.js needed)
60+
# TODO: Enable once npm package structure is set up with bin/doplan.js
6061
steps:
6162
- name: Checkout code
6263
uses: actions/checkout@v4

0 commit comments

Comments
 (0)