summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2019-05-17 17:54:25 +0000
committerAchilleas Pipinellis <axil@gitlab.com>2019-05-17 17:54:25 +0000
commit8508195c26a8236e1cbadd5a514f2ebf97b1df61 (patch)
tree9769d69c3f743bc5870d7783bac4bf5abdc75f5b
parentd0a1a9f13a67dab4ce93a41242329fa56c531e75 (diff)
parent18b05577949bd30b21c10812d8b2805154319971 (diff)
downloadgitlab-ce-8508195c26a8236e1cbadd5a514f2ebf97b1df61.tar.gz
Merge branch 'patch-49' into 'master'
Update index.md See merge request gitlab-org/gitlab-ce!26932
-rw-r--r--doc/ci/examples/deploy_spring_boot_to_cloud_foundry/index.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/ci/examples/deploy_spring_boot_to_cloud_foundry/index.md b/doc/ci/examples/deploy_spring_boot_to_cloud_foundry/index.md
index cf281605f5e..c622dd86828 100644
--- a/doc/ci/examples/deploy_spring_boot_to_cloud_foundry/index.md
+++ b/doc/ci/examples/deploy_spring_boot_to_cloud_foundry/index.md
@@ -4,6 +4,7 @@ author_gitlab: DylanGriffith
level: intermediate
article_type: tutorial
date: 2018-06-07
+last_updated: 2019-04-08
description: "Continuous Deployment of a Spring Boot application to Cloud Foundry with GitLab CI/CD"
---
@@ -77,7 +78,10 @@ image: java:8
stages:
- build
- deploy
-
+
+before_script:
+ - chmod +x mvnw
+
build:
stage: build
script: ./mvnw package