Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Add deprecation warning to the repo (#206) #127

Add deprecation warning to the repo (#206)

Add deprecation warning to the repo (#206) #127

Workflow file for this run

name: Deploy documentation
'on':
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup node
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
with:
node-version: 16
- name: Install Yarn
run: npm install --global yarn
- name: Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Install & Build Docs
run: |
cd docs
yarn
yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847 # v3.9.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build
user_name: github-actions[bot]
user_email: github-actions[bot]@users.noreply.github.com