From 162238c9a589b38478b8cb826d2c17d95003c982 Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Fri, 15 Mar 2024 15:29:11 +0100 Subject: [PATCH] ci: Remove the deploy_docs_production job from the scheduled pipeline Fixes the "'deploy_docs_production' job needs 'build_docs' job, but 'build_docs' is not in any previous stage" issue. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0332c0447..2ee9e2795 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -543,7 +543,7 @@ deploy_docs_production: extends: - .deploy_docs_template rules: - - if: '$CI_COMMIT_REF_NAME == "master"' + - if: $CI_COMMIT_REF_NAME == "master" && $CI_USE_ESP_FLASHER_STUB != "1" changes: - "docs/**/*" - "CONTRIBUTING.rst"