Merge branch 'main' into deps-update-04-2024 #1738
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Publish Storybook into GH Pages using branch name or version as the path. | |
# Run on push for all branches. | |
name: Publish Storybook by branch | |
on: | |
push: | |
# Note that this is required to avoid triggering on automatic release tags. | |
branches: | |
- "*" | |
jobs: | |
publish_storybook: | |
name: Publish Storybook | |
uses: ./.github/workflows/storybook_publish.yaml | |
with: | |
path: ${{ github.ref_name }} |