Skip to content

v4.2.0

v4.2.0 #48

Workflow file for this run

name: Release
on:
release:
types: [published]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- run: pnpm install
- name: Build z
run: cd packages/z && pnpm build
- name: Test z
run: cd packages/z && pnpm test
- name: Test nestjs-zod
run: cd packages/nestjs-zod && pnpm test
- name: Build nestjs-zod
run: cd packages/nestjs-zod && pnpm build
- name: Build example app
run: cd packages/example && pnpm run build
- name: Test example app
run: cd packages/example && pnpm run test:e2e
- name: Extract version
id: version
uses: olegtarasov/[email protected]
with:
tagRegex: 'v(.*)'
- name: Set version from release
uses: reedyuk/[email protected]
with:
version: ${{ steps.version.outputs.tag }}
package: 'packages/nestjs-zod'
- name: Copy README from root of project to nestjs-zod
run: |
cp logo.svg packages/nestjs-zod
cp README.md packages/nestjs-zod
- name: Create NPM config
run: cd packages/nestjs-zod && npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish to NPM
run: cd packages/nestjs-zod && npm publish