Skip to content

build: add a github ci action #1

build: add a github ci action

build: add a github ci action #1

Workflow file for this run

name: Deploy MkDocs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install mkdocs mkdocs-material
- name: Deploy to GitHub Pages
run: |
mkdocs gh-deploy --force