Skip to content

0.0.20-beta.2

0.0.20-beta.2 #14

Workflow file for this run

name: Publish Package
permissions:
id-token: write
# contents: write
on:
push:
branches:
- main
jobs:
publish-npm:
# if: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Use Node.js v18
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/
cache: pnpm
- run: pnpm install
- run: pnpm run publish:ci
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
NPM_CONFIG_PROVENANCE: true