https://github.com/tradeshift/actions-workflow-npm
This is actions-workflow-npm
https://github.com/tradeshift/actions-workflow-npm
developer-productivity
Last synced: 6 months ago
JSON representation
This is actions-workflow-npm
- Host: GitHub
- URL: https://github.com/tradeshift/actions-workflow-npm
- Owner: Tradeshift
- Created: 2021-11-05T08:52:26.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-31T15:38:24.000Z (over 1 year ago)
- Last Synced: 2025-01-20T08:49:32.026Z (over 1 year ago)
- Topics: developer-productivity
- Size: 92.8 KB
- Stars: 2
- Watchers: 5
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# actions-workflow-npm
Shared workflows for npm packages, such as creating pre-releases and semantic
release automation.
## npm publish
```yaml
# .github/workflows/npm-publish.yml
name: npm publish
on:
issue_comment:
types: [created]
jobs:
npm-publish:
uses: tradeshift/actions-workflow-npm/.github/workflows/comment-npm-publish.yml@v1
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
npm-read-token: ${{ secrets.NPM_TOKEN }}
```