Skip to content

Release monorepo packages #144

Release monorepo packages

Release monorepo packages #144

Workflow file for this run

name: Release monorepo packages
on:
workflow_dispatch:
branches:
- main
env:
CPU_CORES: 2
jobs:
release:
name: Release
runs-on: ubuntu-latest
env:
HUSKY: 0 # disabled husky and lint staged; https://typicode.github.io/husky/#/?id=with-env-variables
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.SWAGGER_BOT_GITHUB_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://registry.npmjs.org
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install monorepo dependencies
run: npm ci
- name: Build monorepo
run: npm run build
- name: Check TypeScript types
run: npm run typescript:check-types
- name: Execute tests in monorepo
run: npm run test
- name: Version bump & GitHub release
run: |
git config user.email "[email protected]"
git config user.name "swagger-bot"
npx lerna version --no-private --yes
env:
GH_TOKEN: ${{ secrets.SWAGGER_BOT_GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish monorepo npm packages
run: npx lerna publish from-package --no-private --yes
working-directory: ./packages/apidom-ast
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}