Skip to content
This repository has been archived by the owner on Feb 3, 2024. It is now read-only.

v87.1.0

v87.1.0 #162

Workflow file for this run

name: Publish NPM Package
on:
release:
types: [published]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/
cache: pnpm
- run: pnpm install --ignore-scripts
- name: publish
run: pnpm publish --filter ilios-common --no-git-checks
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}