diff options
author | Mohamed El-Feky <elfeky.m@gmail.com> | 2019-05-17 17:54:25 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2019-05-17 17:54:25 +0000 |
commit | 18b05577949bd30b21c10812d8b2805154319971 (patch) | |
tree | 9769d69c3f743bc5870d7783bac4bf5abdc75f5b /doc | |
parent | d0a1a9f13a67dab4ce93a41242329fa56c531e75 (diff) | |
download | gitlab-ce-18b05577949bd30b21c10812d8b2805154319971.tar.gz |
Update index.md
added `before_script`
as it failed to build maven due to insufficient permissions
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ci/examples/deploy_spring_boot_to_cloud_foundry/index.md | 6 |
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 |