From b50a7041ff4b043a9e7fcdcccb3e17effc0d3efa Mon Sep 17 00:00:00 2001
From: Sheogorath <sheogorath@shivering-isles.com>
Date: Mon, 1 Jan 2024 03:23:00 +0100
Subject: [PATCH] ci(docs): Fix gitlab-ci syntax

---
 docs/.gitlab-ci.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/.gitlab-ci.yaml b/docs/.gitlab-ci.yaml
index 8ba8ca32b..f0c8f9e99 100644
--- a/docs/.gitlab-ci.yaml
+++ b/docs/.gitlab-ci.yaml
@@ -14,7 +14,7 @@ build-docs:
   script:
     - mdbook build docs -d public
   rules:
-    - if: '$FORCE_DOCS_BUILD == true'
+    - if: '$FORCE_DOCS_BUILD == "true"'
     - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PIPELINE_SOURCE == "push"'
       changes:
         paths:
@@ -40,7 +40,7 @@ upload-docs:
   script:
     - mc cp public gitops-docs
   rules:
-    - if: '$FORCE_DOCS_BUILD == true'
+    - if: '$FORCE_DOCS_BUILD == "true"'
     - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PIPELINE_SOURCE == "push"'
       changes:
         paths:
-- 
GitLab