Publish Node.js Package on NPM #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | |
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages | |
name: Publish Node.js Package on NPM | |
on: | |
release: | |
types: [created] | |
jobs: | |
publish-gpr: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org | |
- name: Update version in package.json | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
VERSION=${GITHUB_REF#refs/tags/} | |
npm version $VERSION --no-git-tag-version | |
git add package*.json | |
git commit -m "deploy: release $VERSION" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.TOKEN }} | |
branch: ${{ github.ref_name }} | |
- run: npm ci | |
- run: npm run build | |
- name: Publish to NPM | |
run: npm publish | |
env: | |
NPM_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |