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:
authorAchilleas Pipinellis <axil@gitlab.com>2018-04-12 17:49:50 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2018-04-12 17:49:50 +0300
commitb5e23bb16c8b53d828816853d5421f5e83d9786c (patch)
tree7358ae4399bdc89a503b23b9d39407d96d691ea2 /.gitlab-ci.yml
parent984d6d0f63c4166cb98bceb966990f826338485e (diff)
Build all Docker images before deploy
Do this so that deploy can use the 'latest' Docker image before deploying Pages.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ddd43a60..29b05d29 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,6 +4,7 @@ stages:
- build-images
- build
- test
+ - pre-deploy
- deploy
- post-deploy
@@ -334,7 +335,7 @@ image:nginx-onbuild:
#
image:docs-single:
<<: *docker_prepare
- stage: post-deploy
+ stage: pre-deploy
artifacts: {}
cache: {}
dependencies: []
@@ -356,7 +357,7 @@ image:docs-single:
#
image:docs-archives:
<<: *docker_prepare
- stage: post-deploy
+ stage: pre-deploy
artifacts: {}
cache: {}
dependencies: []
@@ -374,7 +375,7 @@ image:docs-archives:
#
image:docs-latest:
<<: *docker_prepare
- stage: post-deploy
+ stage: pre-deploy
artifacts: {}
cache: {}
dependencies: []