chore: bump version to 10.17.0 #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build: | |
name: "Build docs and publish npm packages" | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.40.0-jammy | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: "https://registry.npmjs.org/" | |
- name: Corepack enable | |
run: corepack enable | |
- name: Use [email protected] | |
run: corepack prepare [email protected] --activate | |
- name: Install dependencies | |
run: pnpm i | |
- name: Build packages | |
run: pnpm run build | |
- name: Publish packages | |
run: pnpm run publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |