dms #1

Merged
jay merged 56 commits from dms into main 2026-03-24 20:14:09 +00:00
2 changed files with 5 additions and 3 deletions
Showing only changes of commit 83e759895e - Show all commits

View File

@@ -19,7 +19,9 @@ jobs:
- name: Build Static Site
run: |
docker run --rm -v $(pwd):/docs mkdocs-builder build
docker run --rm \
-v "${{ github.workspace }}:/app" \
mkdocs-builder build --config-file mkdocs.yml
- name: Deploy to Branch
run: |

View File

@@ -1,10 +1,10 @@
FROM python:3.13-slim
WORKDIR /docs
RUN pip install --no-cache-dir \
mkdocs \
mkdocs-material \
mkdocs-minify-plugin
WORKDIR /app
ENTRYPOINT ["mkdocs"]