From 0f65bf1d8b13f44995ba428644f007d1f5898a1f Mon Sep 17 00:00:00 2001 From: Zygmunt Krynicki <zygmunt.krynicki@huawei.com> Date: Wed, 31 Mar 2021 00:26:16 +0200 Subject: [PATCH] gitlab-ci.yml: fix rules:if for build-docs job There are two separate issues here: - CI_BRANCH_NAME doesn't exist, we want CI_COMMIT_BRANCH instead. - The rules engine doesn't handle quotes in the normal sense. Quotes are only allowed on literals, not variable references. Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@huawei.com> --- .ostc-ci/gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ostc-ci/gitlab-ci.yml b/.ostc-ci/gitlab-ci.yml index 39e9667a..70d397ed 100644 --- a/.ostc-ci/gitlab-ci.yml +++ b/.ostc-ci/gitlab-ci.yml @@ -60,7 +60,7 @@ build-docs: # Run this job in case the pipeline changes. - .ostc-ci/*.yml # Or when things land. - - if: '$CI_BRANCH_NAME == "$CI_DEFAULT_BRANCH"' + - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' changes: # React to changes to the docs directory. - docs/**/* -- GitLab