Skip to content

chore(main): release 8.0.0 (#65) #74

chore(main): release 8.0.0 (#65)

chore(main): release 8.0.0 (#65) #74

Workflow file for this run

# https://github.com/marketplace/actions/release-please-action
on:
push:
branches:
- main
permissions:
id-token: write
contents: write
pull-requests: write
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
release-type: node
- uses: actions/checkout@v6
if: ${{ steps.release.outputs.release_created }}
- uses: pnpm/action-setup@v6
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
if: ${{ steps.release.outputs.release_created }}
- run: pnpm install --frozen-lockfile
if: ${{ steps.release.outputs.release_created }}
- run: pnpm build
if: ${{ steps.release.outputs.release_created }}
- run: pnpm publish --access public
if: ${{ steps.release.outputs.release_created }}