linter informed formatting change

The linter did not like the previous unnecessarily multi-line formatting or a comment.
This commit is contained in:
justknow 2025-04-02 11:30:32 +00:00 committed by Gusted
parent c15ce61542
commit 8f28c97d38

View file

@ -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/
```