Skip to content

docs ci attempt 3

docs ci attempt 3 #3

Workflow file for this run

on:
push:
branches: [ docs ]
jobs:
build:
name: Deploy docs
runs-on: ubuntu-22.04
steps:
- name: Checkout docs
uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install Package
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -e .
- name: Deploy docs
uses: afritzler/mkdocs-gh-pages-action@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}