Skip to content

deploy changes

deploy changes #2

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
paths:
- "docs/**"
- "mkdocs.yml"
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
if: github.repository == 'Sllambias/asparagus'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install docs dependencies
run: |
pip install mkdocs>=1.6.0 mkdocs-shadcn "mkdocstrings[python]>=0.27.0"
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force