Skip to content

Add gh-pages env

Add gh-pages env #3

# Workflow name
name: Build and Publish Storybook to GitHub Pages
on:
# Event for the workflow to run on
push:
branches:
- "gh-pages" # Replace with the branch you want to deploy from
permissions:
contents: read
pages: write
id-token: write
environment:

Check failure on line 15 in .github/workflows/deploy-github-pages.yml

View workflow run for this annotation

GitHub Actions / Build and Publish Storybook to GitHub Pages

Invalid workflow file

The workflow is not valid. .github/workflows/deploy-github-pages.yml (Line: 15, Col: 1): Unexpected value 'environment'
name: github-pages
# List of jobs
jobs:
deploy:
runs-on: ubuntu-latest
# Job steps
steps:
# Manual Checkout
- uses: actions/checkout@v4
# Set up Node
- uses: actions/setup-node@v4
with:
node-version: "20.x"
#👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow
- uses: bitovi/[email protected]
with:
install_command: yarn install # default: npm ci
build_command: yarn build-storybook # default: npm run build-storybook
path: storybook-static # default: dist/storybook
checkout: false # default: true