Skip to content

Publish Node.js Package on NPM #13

Publish Node.js Package on NPM

Publish Node.js Package on NPM #13

Workflow file for this run

# 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
- 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
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
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"
git push origin HEAD:main
- run: npm ci
- run: npm run build
- name: Publish to NPM
run: npm publish
env:
NPM_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}