Skip to content

Implement CICD

Implement CICD #2

Workflow file for this run

name: Publish Docs
on:
push:
branches: docs
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
architecture: x64
- name: Install requirements
run: python3 -m pip install mkdocs
- name: Deploy
run: python3 -m mkdocs gh-deploy --force