Skip to content

Enhance TrimmedSurface component with adaptive sampling and world spa… #14

Enhance TrimmedSurface component with adaptive sampling and world spa…

Enhance TrimmedSurface component with adaptive sampling and world spa… #14

name: Deploy Storybook to GitHub Pages
on:
push:
branches:
- main
# Add permissions block
permissions:
contents: write
pages: write
id-token: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build Storybook
run: npm run build-storybook
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: storybook-static
branch: gh-pages
token: ${{ secrets.GITHUB_TOKEN }}