From ee9f1f4952c62471c4006f0c22026fe0f1a6dba0 Mon Sep 17 00:00:00 2001 From: Sigurd Spieckermann <2206639+sisp@users.noreply.github.com> Date: Mon, 23 Oct 2023 09:32:24 +0200 Subject: [PATCH] Specify container image in GitLab CI job instead of globally (#6224) --- docs/publishing-your-site.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/publishing-your-site.md b/docs/publishing-your-site.md index 3ec02f150..9faa75cd6 100644 --- a/docs/publishing-your-site.md +++ b/docs/publishing-your-site.md @@ -152,9 +152,9 @@ contents: === "Material for MkDocs" ``` yaml - image: python:latest pages: stage: deploy + image: python:latest script: - pip install mkdocs-material - mkdocs build --site-dir public @@ -168,9 +168,9 @@ contents: === "Insiders" ``` yaml - image: python:latest pages: stage: deploy + image: python:latest script: # (1)! - pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git - mkdocs build --site-dir public