Fix/rocket/ep 9545 try fixing lerna publish#889
Fix/rocket/ep 9545 try fixing lerna publish#889Michael Ignoto (Ignotos) wants to merge 2 commits intomainfrom
Conversation
|
There was a problem hiding this comment.
Pull request overview
This PR attempts to resolve the lerna publish CI failure (cryptic 404) by explicitly configuring Lerna’s publish command to use the public npm registry (https://registry.npmjs.org) instead of an unintended registry.
Changes:
- Moves the
registrysetting out ofcommand.versionand intocommand.publish. - Keeps
command.versionconfiguration (release commit message + allowed branches) unchanged in behavior.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
Jira issue link: EP-9545
The
lerna publishis failing with a classically cryptic 404 error that tells us nothing 😔 https://github.com/workleap/ov-igloo-ui/actions/runs/22917927750/job/66512006908The logs before it fails seems to hint that we are trying to publish to a registry that is not the default npm one, but we want to publish them there
lerna info auto-confirmed lerna info publish Publishing packages to npm... lerna notice Skipping all user and access validation due to third-party registry lerna notice Make sure you're authenticated properly ¯\_(ツ)_/¯ lerna ERR! E404 Not found error Command failed with exit code 1.Trying to see if setting the registry explicitly for the publish command fixes it.