npm-publish
npm-publish copied to clipboard
GitHub Action to publish to NPM
The [david-dm.org service](https://david-dm.org/JS-DevTools/npm-publish) for displaying dependency update status doesn't seem to work for a little longer now, so that the image on your `README` is broken.
Hi, I have problem npm-publish.yml `on: push jobs: publish: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: node-version: 10 - run: npm install - run: npm test -...
I get the following error when using this action as github workflow using self hosted runner. It doesn't fail the build and it happens to all npm commands in the...
Hi! I've been using it for a while and I appreciate your work ;) I want to include it on my boilerplates generator, but I would like that it would...
As noted in https://snyk.io/blog/github-actions-to-securely-publish-npm-packages/, it is insecure to allow scripts to execute at the time of publishing, so we should make sure that this configuration is applied
I had a problem where the action would fail with 403 when trying to push to a custom registry. I noticed that in the `.npmrc` the registry URL was truncated...
It appears that using the `semver.diff` function only checks if the package version is different, and subsequently ignores whether the version is actually a higher or lower version. I'd like...
With our workflow, we publish beta versions when changes are still in PR but others might want to check it out. For example, if a package is at `0.24.0`, I...
The `tag` property is clearly needed when actually publishing a package, but I don't think it should be used for checking whether a package exists. In fact, it looks like...
It would be great if the action can actually check if a tag is specified as part of `publishConfig` in package.json, otherwise whenever wanting to switch between @next or @latest...