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 <marius.vlad@collabora.com>
This commit is contained in:
parent
2ac5777316
commit
dedcfb40dd
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue