Skip to content

fix: Fix option descriptions after zod migration #50

fix: Fix option descriptions after zod migration

fix: Fix option descriptions after zod migration #50

Workflow file for this run

on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
issues: write
id-token: write
name: Release
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
tag_name: ${{ steps.release.outputs.tag_name }}
steps:
- uses: googleapis/release-please-action@v4
id: release
- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v4
if: ${{ steps.release.outputs.release_created }}
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- if: ${{ steps.release.outputs.release_created }}
run: |
yarn install --immutable
yarn tsc
yarn build
yarn npm publish --access public