Add deploy action
All checks were successful
Build and Deploy MkDocs / build-next (push) Successful in 42s

This commit is contained in:
Skylar Ittner 2026-02-13 14:37:37 -07:00
parent bb3dfc8d9f
commit f07095a49b

View File

@ -9,22 +9,27 @@ jobs:
build-next:
runs-on: ubuntu-latest
container:
image: squidfunk/mkdocs-material
steps:
- name: Set up container
run: |
apk add --no-cache rsync openssh-client
apt update
apt install -y rsync
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install MkDocs/Mike
run: |
pip install mike
pip install --upgrade pip
pip install mkdocs mkdocs-material pymdown-extensions mkdocs-material-extensions mike
- name: Setup SSH keys
run: |