This commit is contained in:
@@ -8,13 +8,17 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: python:3.13-slim
|
image: node:20-bookworm
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install mkdocs
|
- name: Install Python + MkDocs
|
||||||
run: pip install -r ci/mkdocs/requirements.txt
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y python3 python3-pip
|
||||||
|
pip3 install -r ci/mkdocs/requirements.txt
|
||||||
|
|
||||||
- name: Build site
|
- name: Build site into Docker volume
|
||||||
run: mkdocs build --clean --site-dir /public
|
run: |
|
||||||
|
mkdocs build --clean --site-dir /public
|
||||||
|
|||||||
Reference in New Issue
Block a user