Skip to content

hidefooter for landinglayout #74

hidefooter for landinglayout

hidefooter for landinglayout #74

Workflow file for this run

name: Deploy pages
on:
push:
branches:
- main
jobs:
build-and-deploy-storybook:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: false
- uses: actions/setup-node@v2
with:
node-version: 16
- name: Install and Build 🔧
run: | # Install npm packages and build the Storybook files
yarn
yarn build-storybook
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: pages # The branch the action should deploy to.
FOLDER: docs-build # The folder that the build-storybook script generates files.
CLEAN: true # Automatically remove deleted files from the deploy branch
TARGET_FOLDER: docs # The folder that we serve our Storybook files from