Skip to content
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.

Add landing page before token exchange (#1255) #401

Add landing page before token exchange (#1255)

Add landing page before token exchange (#1255) #401

name: Deploy Storybook
on:
push:
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: '14.17'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Build Storybook
run: yarn build-storybook
- name: Deploy Storybook to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./storybook-static