Skip to content

Migrated VPS and DNS providers #22

Migrated VPS and DNS providers

Migrated VPS and DNS providers #22

Workflow file for this run

name: Publish Documentation
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: |
sudo apt-get -y install python3-sphinx
pip3 install furo
- name: Build Site
run: make html
- name: Deploy Site
uses: peaceiris/actions-gh-pages@v3
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/html/
force_orphan: true