add workflow
Some checks failed
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

View File

@@ -19,7 +19,9 @@ jobs:
- name: Build Static Site - name: Build Static Site
run: | 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 - name: Deploy to Branch
run: | run: |

View File

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