remove workflow & ci

This commit is contained in:
John Gatward
2026-03-25 12:15:40 +00:00
parent c8535690f5
commit 80dbfcd9f7
3 changed files with 0 additions and 41 deletions

View File

@@ -1,29 +0,0 @@
name: Build and Deploy MkDocs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Build and Extract Site
run: |
docker build -t mkdocs-temp -f ci/mkdocs/Dockerfile .
docker create --name temp-container mkdocs-temp
docker cp temp-container:/build/site ./output_content
docker rm temp-container
mv output_content /tmp/site_final
- name: Deploy to Static volume
run: |
rm -rf /site_output/*
cp -r /tmp/site_final/* /site_output/

View File

@@ -1,9 +0,0 @@
FROM ghcr.io/squidfunk/mkdocs-material:latest
WORKDIR /build
COPY . .
RUN pip install --no-cache-dir mkdocs-minify-plugin
RUN mkdocs build

View File

@@ -1,3 +0,0 @@
mkdocs==1.6.1
mkdocs-material==9.7.3
pymdown-extensions==10.21