Skip to content

Npm.js deploy

Npm.js deploy #108

Workflow file for this run

name: Npm.js deploy
permissions:
id-token: write
contents: read
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- name: Update NPM
run: npm install -g npm@latest
- run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- run: echo ${VERSION}
- run: npm ci
- name: Build the package
run: npm run build:publish
- name: Define npm tag
run: |
if [[ ${VERSION} == *"alpha"* || ${VERSION} == *"beta"* || ${VERSION} == *"rc"* ]]; then echo "NPM_TAG=next"; else echo "NPM_TAG=latest"; fi >> $GITHUB_ENV
echo ${NPM_TAG}
- name: Version the package
run: npm version ${VERSION} --no-git-tag-version --save --verbose
working-directory: dist
- name: Publish the package
run: npm publish --tag ${NPM_TAG}
working-directory: dist