Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: 🚀 auto deploy storybook to github pages #365

Merged
merged 3 commits into from
Dec 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions .github/workflows/build-and-deploy-storybook.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Build and Deploy Storybook to Github pages

on:
push:
branches:
- main
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

jobs:
build_and_deploy:
name: Build and Deploy Storybook to Github pages
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: Git checkout
uses: actions/checkout@v3

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '16.x'

- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: |
node_modules
~/.cache/Cypress
key: deps-node-modules-${{ hashFiles('**/yarn.lock') }}

- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile

- name: Test
run: yarn test

- name: Build storybook
shell: bash
run: yarn build-storybook

- name: Upload
uses: actions/upload-pages-artifact@v2
with:
path: storybook-static

- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v3
with:
token: ${{ github.token }}
Loading