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:
authorEvan Read <eread@gitlab.com>2020-01-06 05:03:22 +0300
committerEvan Read <eread@gitlab.com>2020-01-06 05:03:22 +0300
commit7d397e90fb2d80ff537fb99b4798549cbbe0d662 (patch)
tree0d27a043f1fe6596006366ba3f93e01ba8b3e3bc
parented9e6930ce57e49dc5312712765f90731a7bb92f (diff)
parent8889f8c17286dd396babe3bbbbd2aca2dd04450b (diff)
Merge branch 'docs-lint-set-manual' into 'master'
Set new images to manual See merge request gitlab-org/gitlab-docs!665
-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.