Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/babbel/publish-npm
Publishes JavaScript npm package to GitHub Packages
https://github.com/babbel/publish-npm
actions
Last synced: 15 days ago
JSON representation
Publishes JavaScript npm package to GitHub Packages
- Host: GitHub
- URL: https://github.com/babbel/publish-npm
- Owner: babbel
- License: mit
- Created: 2021-01-05T17:56:52.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-07T13:05:36.000Z (about 1 month ago)
- Last Synced: 2025-01-07T13:33:41.656Z (about 1 month ago)
- Topics: actions
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 44
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub Action `babbel/publish-npm`
Publishes JavaScript npm package to GitHub Packages.
## Usage
```
steps:
- uses: babbel/publish-npm
```You can also specify a `tag` input to register the published package with, such that `npm install @` will install this version
```
steps:
- uses: babbel/publish-npm
with:
tag: beta
```If the package.json is not in the current directory, you can override the working directory:
```
steps:
- uses: babbel/publish-npm
with:
working-directory: packages/packagename
```