File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -59,12 +59,18 @@ jobs:
5959 # Build once more to ensure latest versions are included
6060 yarn build
6161
62- # Publish to npm
63- yarn changeset publish
62+ # Manually publish each package with npm
63+ echo "Publishing packages directly with npm..."
64+ cd packages/test-utils
65+ npm publish --access public || echo "Failed to publish test-utils, may already exist"
66+ cd ../mcp
67+ npm publish --access public || echo "Failed to publish mcp, may already exist"
68+ cd ../..
6469
6570 # Push the version updates and tags
6671 git push origin main
6772 git push --tags
6873 env :
6974 GITHUB_TOKEN : ${{ secrets.GH_TOKEN || secrets.GITHUB_TOKEN }}
70- NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
75+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
76+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments