From f657359729ee0f742090855841b46731320a436c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20K=C3=BCderle?= Date: Tue, 27 May 2025 14:43:30 +0200 Subject: [PATCH] Quote versions variables in GitLab documentation ## Summary Fixes #13675 ## Test Plan New example was tested manually to verify that it works. --- docs/guides/integration/gitlab.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/integration/gitlab.md b/docs/guides/integration/gitlab.md index 08cf688c6..0a4073394 100644 --- a/docs/guides/integration/gitlab.md +++ b/docs/guides/integration/gitlab.md @@ -13,8 +13,8 @@ Select a variant that is suitable for your workflow. ```yaml title="gitlab-ci.yml" variables: - UV_VERSION: 0.5 - PYTHON_VERSION: 3.12 + UV_VERSION: "0.5" + PYTHON_VERSION: "3.12" BASE_LAYER: bookworm-slim # GitLab CI creates a separate mountpoint for the build directory, # so we need to copy instead of using hard links.