Skip to content

[Feat] 타임블록 바 퍼블리싱 (#328) #24

[Feat] 타임블록 바 퍼블리싱 (#328)

[Feat] 타임블록 바 퍼블리싱 (#328) #24

name: 'Storybook Deployment'
on:
push:
branches:
- develop
jobs:
build-and-deploy:
runs-on: ubuntu-22.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build-storybook
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
publish_dir: ./storybook-static
github_token: ${{ secrets.GITHUB_TOKEN }}