Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 759be70d..aab402d6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -328,7 +328,6 @@ pages:
#
image:docs-lint:
<<: *docker_prepare
- <<: *scheduled_infrequent
stage: build-images
variables:
IMAGE_NAME: $CI_REGISTRY_IMAGE:lint
@@ -336,13 +335,13 @@ image:docs-lint:
script:
- docker build -t $IMAGE_NAME -f $DOCKERFILE .
- docker push $IMAGE_NAME
+ when: manual
#
# GitLab docs image
#
image:gitlab-docs:
<<: *docker_prepare
- <<: *scheduled_infrequent
stage: build-images
variables:
IMAGE_NAME: $CI_REGISTRY_IMAGE:gitlab-docs
@@ -350,6 +349,7 @@ image:gitlab-docs:
script:
- docker build -t $IMAGE_NAME -f $DOCKERFILE .
- docker push $IMAGE_NAME
+ when: manual
#
# Helper Docker image containing all build dependencies.