feat : 랜딩페이지 리뉴얼 (#315) #116
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
name: Build & Deploy Storybook | |
on: | |
push: | |
branches: [dev] | |
paths: ['shared/ui/src/**'] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install and Build 🔧 | |
# This needs an Acces Token stored as "GH_TOKEN" 👇 | |
run: | | |
cd shared/ui | |
yarn install | |
yarn run deploy-storybook -- --ci | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} |