Skip to content

Revert "feat: same same but different" #5

Revert "feat: same same but different"

Revert "feat: same same but different" #5

name: Deploy Storybook to GitHub Pages
on:
push:
branches:
- main
release:
types: [published]
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: storybook-deploy
cancel-in-progress: true
jobs:
# Build Storybook
build:
runs-on: ubuntu-latest
steps:
# Checkout code
- name: Checkout code
uses: actions/checkout@v4
# Setup Node.js
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
cache: 'npm'
# Install dependencies
- name: Install dependencies
run: npm install
# Build Storybook
- name: Build Storybook
run: npm run build-storybook
# Upload artifact for deployment
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: storybook-static
# Deploy to GitHub Pages
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@v2