Skip to content

ButtonIcon: Add ledger. #200

ButtonIcon: Add ledger.

ButtonIcon: Add ledger. #200

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: "14"
- name: Install and Build
run: |
yarn
yarn build-storybook
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
BRANCH: gh-pages
FOLDER: storybook-static
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
CLEAN: true