Skip to content

🐛 fix: fix modal max-height #42

🐛 fix: fix modal max-height

🐛 fix: fix modal max-height #42

Workflow file for this run

name: publish to npm
on:
push:
tags:
- "*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v1
- name: Setup node
uses: actions/setup-node@v4
with:
registry-url: https://registry.npmjs.org
- name: 🔧 Install and build
run: bun i && bun run build
- name: 📦 Publish package on NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_PERFECTUI_TOKEN}}