Merge pull request #4317 from Codeinwp/dependabot/composer/developmen… #889
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: Build and Deploy StoryBook 🚀 | |
on: | |
push: | |
branches: | |
- development | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2.3.1 | |
with: | |
persist-credentials: false | |
- name: Setup node 14 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install and Build 🔧 | |
run: | | |
yarn install --frozen-lockfile | |
yarn run build | |
yarn run build-storybook | |
cp ./.storybook/readme.md ./storybook-static/readme.md | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@3.6.2 | |
with: | |
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} | |
BRANCH: storybook-pages # Deploy to. | |
FOLDER: storybook-static # Deploy this. | |
CLEAN: true # Remove deleted files from deploy branch |