Skip to content

Commit eb9c8d6

Browse files
committed
fix: remove GitHub Package Registry publishing to resolve auth errors
- Remove @semantic-release/exec plugin that was failing with authentication - Focus on core NPM publishing which works correctly - Eliminates 'need auth' errors blocking the release process - GitHub releases will still be created automatically
1 parent 70f3bb8 commit eb9c8d6

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

release.config.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,7 @@ module.exports = {
2727
tarballDir: "dist",
2828
},
2929
],
30-
[
31-
"@semantic-release/exec",
32-
{
33-
publishCmd:
34-
'cp package.json package.json.bak && jq \'.name = "@btwld/nestjs-worker" | .publishConfig.registry = "https://npm.pkg.github.com"\' package.json > package.json.tmp && mv package.json.tmp package.json && npm publish && mv package.json.bak package.json',
35-
},
36-
],
30+
3731
[
3832
"@semantic-release/github",
3933
{

0 commit comments

Comments
 (0)