Skip to content

Add tos

Add tos #10

Workflow file for this run

name: documentation
on:
workflow_dispatch:
push:
branches:
- main
jobs:
gh-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Build docs
run: |
yarn install --frozen-lockfile
yarn build
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./build
allow_empty_commit: false
keep_files: true