add workflow
Build and Push Static files / deploy (push) Failing after 32s

This commit is contained in:
Jay
2026-03-03 14:57:22 +00:00
parent 1209e30858
commit 83e759895e
2 changed files with 5 additions and 3 deletions
+3 -1
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: |
+2 -2
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"]