Skip to content

change the github action to use requirments.txt #3

change the github action to use requirments.txt

change the github action to use requirments.txt #3

Workflow file for this run

name: Deploy Docs
on:
push:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install -r requirements.txt
- run: mkdocs build
- uses: actions/upload-artifact@v4
with:
name: docs-${{ github.sha }}
path: site/
- run: mkdocs gh-deploy --force