You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 14, 2025. It is now read-only.
fix: resolve NPM husky and Docker OCI format issues in publish workflow (#313)
Two critical fixes for the Publish workflow:
1. NPM Publish Fix:
- Added --ignore-scripts flag to npm publish commands
- Prevents prepare script from running husky (devDependency)
- Husky is not available in extracted NPM packages
2. Docker Publish Fix:
- Install skopeo to handle OCI format images
- Multi-platform builds from Main workflow use OCI format
- docker load doesn't support OCI, replaced with skopeo copy
- Skopeo converts OCI archive to docker-daemon format
These issues caused v1.10.9 publish to fail with:
- NPM: "sh: 1: husky: not found" error
- Docker: "no such file or directory" when loading OCI image
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <[email protected]>
0 commit comments