Skip to content

Merge pull request #128 from movableink/nicksteffens/sc-86339/tailwin… #46

Merge pull request #128 from movableink/nicksteffens/sc-86339/tailwin…

Merge pull request #128 from movableink/nicksteffens/sc-86339/tailwin… #46

Workflow file for this run

name: Deploy to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
paths:
- '**.jsx'
- '**.mdx'
- '.storybook/*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- uses: volta-cli/action@v1
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies and Build Stylesheets
run: yarn install
- name: Build Ember & Storybook
run: yarn build-storybook
- name: Upload to GitHub Pages
uses: JamesIves/[email protected]
with:
BRANCH: gh-pages
FOLDER: storybook-static