Update index.md

added `before_script`
as it failed to build maven due to insufficient permissions
This commit is contained in:
Mohamed El-Feky 2019-05-17 17:54:25 +00:00 committed by Achilleas Pipinellis
parent d0a1a9f13a
commit 18b0557794
1 changed files with 5 additions and 1 deletions

View File

@ -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