From dedcfb40ddfd26655160fc8632706cb2723b16ac Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Wed, 5 Jun 2024 13:35:06 +0300 Subject: [PATCH] gitlab-ci.yml: Update CI_BUILD_REF_NAME With GitLab 16.0 CI_BUILD_REF_NAME was replaced with CI_COMMIT_REF_NAME. which might explain why we do not seem to install the documentation on https://wayland.pages.freedesktop.org/weston/ This should makes that docs deplay stage run. Signed-off-by: Marius Vlad --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ce3e3b675..621aee7f7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -573,6 +573,6 @@ pages: paths: - public rules: - - if: '$CI_PIPELINE_SOURCE == "push" && $CI_PROJECT_PATH == "wayland/weston" && $CI_BUILD_REF_NAME == $CI_DEFAULT_BRANCH' + - if: '$CI_PIPELINE_SOURCE == "push" && $CI_PROJECT_PATH == "wayland/weston" && $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH' when: on_success - when: never