diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index d8a8d44..9ed3576 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -8,13 +8,17 @@ jobs: build: runs-on: ubuntu-latest container: - image: python:3.13-slim + image: node:20-bookworm steps: - uses: actions/checkout@v4 - - name: Install mkdocs - run: pip install -r ci/mkdocs/requirements.txt + - name: Install Python + MkDocs + run: | + apt-get update + apt-get install -y python3 python3-pip + pip3 install -r ci/mkdocs/requirements.txt - - name: Build site - run: mkdocs build --clean --site-dir /public + - name: Build site into Docker volume + run: | + mkdocs build --clean --site-dir /public