Skip to content

Commit

Permalink
fix github action yml
Browse files Browse the repository at this point in the history
  • Loading branch information
imagine10255 committed Oct 27, 2024
1 parent bf78f4f commit 2088111
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 22 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Deploy Storybook to Pages

on:
push:
branches:
- storybook
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

Expand All @@ -17,16 +19,19 @@ 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:
node-version: '18'

- 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
Expand All @@ -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 }}
15 changes: 0 additions & 15 deletions example/index.html

This file was deleted.

Original file line number Diff line number Diff line change
@@ -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.*'},
Expand Down

0 comments on commit 2088111

Please sign in to comment.