Merge pull request #122 from reaviz/clutser-boundary-spacing #214
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: release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
if: github.repository == 'reaviz/reagraph' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v1 | |
with: | |
version: 18.x | |
- name: Install deps and build (with cache) | |
uses: bahmutov/npm-install@v1 | |
- name: Build Prod | |
run: yarn build | |
- name: Build Storybook | |
run: yarn build-storybook | |
# - name: Publish Chromatic | |
# run: yarn chromatic | |
- name: Copy Domain | |
run: yarn copy | |
- name: Publish Storybook to GH Pages | |
if: success() | |
uses: crazy-max/ghaction-github-pages@v3 | |
with: | |
target_branch: gh-pages | |
build_dir: storybook-static | |
jekyll: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |