console/.github/workflows/storybook.yaml
2025-01-16 15:00:52 +01:00

46 lines
1.5 KiB
YAML

on:
workflow_call:
jobs:
deployment:
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Get changed files
id: storybook-files
uses: tj-actions/changed-files@v45
with:
files: packages/web/app/**
- name: Run step if any file(s) in the docs folder change
if: steps.storybook-files.outputs.any_changed == 'true'
run: |
echo "One or more files has changed."
echo "List all the files that have changed: ${{ steps.storybook-files.outputs.all_changed_files }}"
- name: setup environment
if: steps.storybook-files.outputs.any_changed == 'true'
uses: ./.github/actions/setup
with:
codegen: true
actor: storybook
- uses: the-guild-org/shared-config/website-cf@main
if: steps.storybook-files.outputs.any_changed == 'true'
name: build and deploy storybook
with:
cloudflareApiToken: ${{ secrets.WEBSITE_CLOUDFLARE_API_TOKEN }}
cloudflareAccountId: ${{ secrets.WEBSITE_CLOUDFLARE_ACCOUNT_ID }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
projectName: hive-storybook
prId: ${{ github.event.pull_request.number }}
mainBranch: main
websiteDirectory: ./
buildScript: cd packages/web/app && pnpm build-storybook
artifactDir: packages/web/app/storybook-static
commentId: storybook-deployment
commentTitle: '📚 Storybook Deployment'