Skip to content

Update documentation to V2.0.16 (#22) #29

Update documentation to V2.0.16 (#22)

Update documentation to V2.0.16 (#22) #29

Workflow file for this run

name: Documentation CI Build
on:
push:
branches-ignore:
- 'gh-pages'
jobs:
Docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
# Install dependencies
- name: Setup node 14
uses: actions/setup-node@v2
with:
node-version: '14'
# Build Docs
- name: Build docs
run: |
npm install -g yarn
yarn install
yarn docs:build
# Deploy to gh-pages
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
cname: docs.hyperion-project.org