You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a developer, I want to publish npm packages to both github npm package registry and npmjs.com so that the manual publishing steps are avoided.
The present github workflows of libms and runner have integrated npm package publishing step. How ever, the npm package is only published to github npm package registry.
The improvement required is:
Parameterized npm publishing step separated into an independent job. An example template is in docker workflow. Ideally one workflow file publishes to both npmjs.com and github npm package registry.
Describe the problems your feature request solves
The npm package publishing to npmjs.com is manual step. This step is being done once per each release. It would be ideal to publish all versions of npm packages to
One separate workflow file that would publish to both github npm registry and npmjs.com. This workflow file must have parameterization of package name. Just using package name avoids the need to have github environment variables.
However, a token is required to publish a package to npmjs.com. This token shall be part of github environment variables.
Success Criterion
Checklist:
new workflow file that both lib-ms.yml and runner.yml can reuse
libms and runner packages published to npmjs.com
Update documentation
No codeclimate issues
The text was updated successfully, but these errors were encountered:
Describe the feature
As a developer, I want to publish npm packages to both github npm package registry and npmjs.com so that the manual publishing steps are avoided.
The present github workflows of libms and runner have integrated npm package publishing step. How ever, the npm package is only published to github npm package registry.
The improvement required is:
Parameterized npm publishing step separated into an independent job. An example template is in docker workflow. Ideally one workflow file publishes to both npmjs.com and github npm package registry.
Describe the problems your feature request solves
The npm package publishing to npmjs.com is manual step. This step is being done once per each release. It would be ideal to publish all versions of npm packages to
Describe the solution you'd like
One separate workflow file that would publish to both github npm registry and npmjs.com. This workflow file must have parameterization of package name. Just using package name avoids the need to have github environment variables.
However, a token is required to publish a package to npmjs.com. This token shall be part of github environment variables.
Success Criterion
Checklist:
The text was updated successfully, but these errors were encountered: