diff --git a/docs/user/packages/npm.md b/docs/user/packages/npm.md index 23a0d2fa..56b3e279 100644 --- a/docs/user/packages/npm.md +++ b/docs/user/packages/npm.md @@ -173,10 +173,7 @@ jobs: #WARNING: This will override the default CA settings (null == only use known CAs) and prevent npm from communicating with the public npm registry # To reverse this, use: npm config set cafile= run: npm config set cafile {location of ca-cert.pem} - - name: - Publish to registry - # if --access=restricted: Error: Can't restrict access to unscoped packages - run: | - npm publish --scope=@{scope} --registry=${{github.SERVER_URL}}/api/packages/{owner}/npm/ + - name: Publish to registry + run: npm publish --scope=@{scope} --registry=${{github.SERVER_URL}}/api/packages/{owner}/npm/ ```