diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 852614731e0a2255879218df1a5c2a4510545877..3d5b23f25b54890c8fdabf5f6c4dd5ec2c6cf906 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -68,11 +68,12 @@ test: # Build the sphinx documentation and make it ready for deployment by Gitlab Pages # Special job for serving a static website. See https://docs.gitlab.com/ee/ci/yaml/README.html#pages -pages: - tags: [ docker ] +pages_prepare: &pages_prepare + tags: [ cached-dind ] stage: deploy only: - - web + refs: + - /^release-.*$/i script: - mkdir -p build - cd build @@ -82,3 +83,8 @@ pages: artifacts: paths: - public +pages: + <<: *pages_prepare + only: + refs: + - main