Skip to content

1.2.0

1.2.0 #7

Workflow file for this run

name: Publish
on:
release:
types: [released]
jobs:
publish:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Install modules
run: npm ci
- name: Build
run: npm run build
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}