Skip to content

Add zod experimental warning callout (#34) #28

Add zod experimental warning callout (#34)

Add zod experimental warning callout (#34) #28

Workflow file for this run

name: cd
on:
push:
branches: [main]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
if: ${{ github.repository == 'marcomuser/conformal' }}
permissions:
contents: write
pull-requests: write
id-token: write
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: "24.x"
registry-url: "https://registry.npmjs.org"
cache: ""
package-manager-cache: false
- name: Install Dependencies
run: npm ci
- name: Build Project
run: npm run build
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
version: npm run version
publish: npx changeset publish
commit: "[ci] release"
title: "[ci] release"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}