fix: ptr indicator clamping #334
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
- wip # V3 | |
paths: | |
- "docs/**" | |
- "packages/recipe/**" | |
- "packages/stylesheet/**" | |
- "packages/react/**" | |
- "packages/stackflow/**" | |
workflow_dispatch: | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
name: Deploy seed-design-v3 Storybook | |
jobs: | |
deploy: | |
name: Deploy seed-design-v3 Storybook | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: Install Dependencies | |
run: bun install --immutable | |
- name: Build Packages | |
run: bun build-only-package | |
- name: Build Storybook | |
working-directory: ./docs | |
run: bun build-storybook | |
- name: Deploy docs at Cloudflare Pages in `seed-design-v3-storybook` project (Production) | |
run: | | |
CLOUDFLARE_ACCOUNT_ID=${{ secrets.CF_ACCOUNT_ID }} \ | |
CLOUDFLARE_API_TOKEN=${{ secrets.CF_API_TOKEN }} \ | |
bun wrangler pages deploy ./docs/storybook-static --project-name=seed-design-v3-storybook --branch=main |