Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

2.0.2

2.0.2 #4

Workflow file for this run

name: Deploy
on:
push:
branches:
- doc
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
uses: actions/setup-node@v2
with:
node-version: 16.x
cache: yarn
- run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: build
single-commit: true