Publish Storybooks #1434
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
name: Publish Storybooks | |
on: | |
workflow_run: | |
workflows: ["Release new version"] | |
types: | |
- completed | |
workflow_dispatch: | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Run Setup | |
uses: ./.github/actions/setup | |
with: | |
npm_token: ${{ secrets.npm_token }} | |
- name: Build & deploy Storybooks to GitHub Pages | |
run: | | |
yarn lerna run build --include-dependencies | |
yarn lerna run --scope monday-ui-react-core build-storybook | |
yarn lerna run --scope vibe-storybook-components build-storybook | |
cd packages/core/static_storybook | |
echo "vibe.monday.com" > ./CNAME | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.npm_token }} | |
- name: Push storybook-blocks Storybook to Github Pages | |
if: success() | |
uses: JamesIves/[email protected] | |
with: | |
folder: packages/storybook-blocks/storybook-static | |
branch: gh-pages | |
target-folder: storybook-blocks | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push core Storybook to Github Pages | |
uses: JamesIves/[email protected] | |
with: | |
clean-exclude: storybook-blocks/* | |
folder: packages/core/static_storybook | |
branch: gh-pages | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |