Skip to content

1.6.0

1.6.0 #40

Workflow file for this run

name: gh-pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up nodejs
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- run: yarn
- run: yarn run docs:build
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs-dist # The folder the action should deploy.