From 2088111beae3d7ec6a8023ee234efc3c4025240e Mon Sep 17 00:00:00 2001 From: imagine10255 Date: Sun, 27 Oct 2024 14:15:29 +0800 Subject: [PATCH] fix github action yml --- .github/workflows/deploy.yml | 13 +++++++++---- example/index.html | 15 --------------- .../Block.stories.tsx => block/block.stories.tsx} | 7 ++++--- 3 files changed, 13 insertions(+), 22 deletions(-) delete mode 100644 example/index.html rename example/src/components/primary/{Block/Block.stories.tsx => block/block.stories.tsx} (97%) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5c3fdf9..960aea2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,6 +2,8 @@ name: Deploy Storybook to Pages on: push: + branches: + - storybook tags: - 'v[0-9]+.[0-9]+.[0-9]+' @@ -17,6 +19,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 + - name: Wait for npm publish + run: sleep 30 # 延遲30秒,可根據實際情況調整 + - name: Set up Node.js uses: actions/setup-node@v3 with: @@ -24,9 +29,9 @@ jobs: - name: Replace local links with actual versions run: | - sed -i 's#"@acrool/react-skeleton": "link:.."#"@acrool/react-block": "latest"#' package.json - sed -i 's#"react": "link:../node_modules/react"#"react": "^18.2.0"#' package.json - sed -i 's#"react-dom": "link:../node_modules/react-dom"#"react-dom": "^18.2.0"#' package.json + sed -i 's#"@acrool/react-block": "link:.."#"@acrool/react-block": "latest"#' package.json + sed -i 's#"react": "link:../node_modules/react"#"react": "^18.0.0"#' package.json + sed -i 's#"react-dom": "link:../node_modules/react-dom"#"react-dom": "^18.0.0"#' package.json - name: Install dependencies run: yarn install @@ -38,6 +43,6 @@ jobs: run: yarn global add wrangler - name: Deploy to Cloudflare Pages - run: wrangler pages deploy ./storybook-static --project-name=acrool-react-table-storybook --branch main + run: wrangler pages deploy ./storybook-static --project-name=acrool-react-img --branch main env: CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} diff --git a/example/index.html b/example/index.html deleted file mode 100644 index f6ee24c..0000000 --- a/example/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Acrool React Img - - - -
- - - - diff --git a/example/src/components/primary/Block/Block.stories.tsx b/example/src/components/primary/block/block.stories.tsx similarity index 97% rename from example/src/components/primary/Block/Block.stories.tsx rename to example/src/components/primary/block/block.stories.tsx index 0b032a9..1aef40d 100644 --- a/example/src/components/primary/Block/Block.stories.tsx +++ b/example/src/components/primary/block/block.stories.tsx @@ -1,11 +1,12 @@ +import {block} from '@acrool/react-block'; import type {Meta, StoryObj} from '@storybook/react'; -import {block} from "@acrool/react-block"; -import Button from "../../atoms/Button"; + +import Button from '../../atoms/Button'; const meta = { - title: 'Primary/Block', + title: 'Primary/block', parameters: { layout: 'centered', actions: {argTypesRegex: '^on.*'},