Skip to content

Merge pull request #181 from MiyashitaLab/fix/config_redirect #118

Merge pull request #181 from MiyashitaLab/fix/config_redirect

Merge pull request #181 from MiyashitaLab/fix/config_redirect #118

name: Deploy Storybook to GitHub Pages
on:
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Cache dependencies
uses: actions/cache@v3
id: node_modules_cache_id
with:
path: |
${{ github.workspace }}/node_modules
key: node_modules-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.node_modules_cache_id.outputs.cache-hit != 'true'
run: npm ci
- name: Build Storybook
run: npm run build-storybook
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./storybook-static
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1