Skip to content

Update package.json #24

Update package.json

Update package.json #24

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 NPM
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write # allow GITHUB_TOKEN to publish packages
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
- name: Check for version change
id: version-check
run: echo "version=$(jq -r .version package.json)" >> $GITHUB_OUTPUT
- run: npm ci
- uses: JS-DevTools/npm-publish@v3
with:
access: public
token: ${{ secrets.npm_token }}
if: steps.version-check.outputs.version != ${{ github.event.before }}.version