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

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