Skip to content

Deploy Storybook

Deploy Storybook #1

name: 'Deploy Storybook'
on:
workflow_call:
inputs:
artifact-name:
description: name of the artifact to deploy
required: true
type: string
workflow_dispatch:
inputs:
artifact-name:
description: name of the artifact to deploy
required: false
type: string
default: "storybook-latest"
jobs:
deploy-page:
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
with:
artifact_name: ${{ inputs.artifact-name }}