Skip to content
Snippets Groups Projects
Commit 53814638 authored by Marius Vlad's avatar Marius Vlad
Browse files

gitlab-ci.yml: Always run container jobs to allow page deploy to work

parent 5e84f916
No related branches found
No related tags found
1 merge request!1540gitlab-ci.yml: Remove dependency on docs-build to publish docs
...@@ -163,9 +163,13 @@ check-commit: ...@@ -163,9 +163,13 @@ check-commit:
base-container-pre: base-container-pre:
rules: rules:
# this run always in merge request
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"' - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: always when: always
# default, only run by default on MR. # run always on main to allow docs to publish
- if: '$CI_PIPELINE_SOURCE == "push" && $CI_PROJECT_PATH == "wayland/weston" && $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH'
when: always
# allow to run manually in a branch
- when: manual - when: manual
stage: "Pre Base container" stage: "Pre Base container"
script: echo "exit 0" script: echo "exit 0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment