Skip to content

Commit

Permalink
CI: Extract Storybook deployment to its own workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Mintoo200 committed Mar 21, 2024
1 parent 6b790f3 commit fae5784
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 13 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,9 @@ jobs:
artifact-name: "storybook-latest"
deploy-page:
needs: build-storybook
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: "storybook-latest"
uses: ./.github/workflows/deploy-storybook.yml
with:
artifact_name: "storybook-latest"
publish-package:
needs: build
uses: ./.github/workflows/publish-package.yml
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/deploy-storybook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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 }}

0 comments on commit fae5784

Please sign in to comment.