Skip to content

moved communications to main docs #52

moved communications to main docs

moved communications to main docs #52

Workflow file for this run

name: Docs
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Upgrade jinja
run: pip install -U jinja2
- name: Install Python dependencies
run: pip install -r requirements-doc.txt
- name: Build
run: make html
- name: Publish
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/html
force_orphan: true