1.0.23 #58
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
# Deplay storybook for example | |
name: Deploy storybook | |
on: | |
pull_request: | |
paths: | |
- 'apps/react/**' | |
- '.github/workflows/deploy-storybook.yml' | |
push: | |
branches: | |
- main | |
paths: | |
- 'apps/react/**' | |
- '.github/workflows/deploy-storybook.yml' | |
jobs: | |
deploy-storybook: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version: 20 | |
- uses: pnpm/[email protected] | |
with: | |
version: 9.1.0 | |
- uses: actions/[email protected] | |
id: pnpm-cache | |
with: | |
path: | | |
**/node_modules | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm- | |
- if: steps.pnpm-cache.outputs.cache-hit != 'true' | |
id: install | |
run: pnpm install && echo "::set-output name=installed::true" | |
- if: steps.install.outputs.installed != 'true' | |
run: pnpm install | |
- run: pnpm build-storybook | |
- name: Deploy to GitHub Pages | |
if: github.event_name != 'pull_request' | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./apps/react/storybook-static |