Skip to content

1.42.10

1.42.10 #23

Workflow file for this run

name: Publish
on:
push:
tags:
# Matches 0.1.0, 1.2.3, 2.0.0-rc.1, etc.
# See "TAG CONVENTION" above if you prefer tags with a "v" prefix.
- 'v*'
jobs:
publish:
name: Publish to npm
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Publish to npm
run:
npm run release
env:
NPM_CONFIG_PROVENANCE: true