From 36aed5be70bb6f46a8858f2c56ee2d918a9d4c22 Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Mon, 20 Apr 2020 18:22:18 +0200 Subject: [PATCH] gitlab ci --- .gitlab-ci.yml | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cf3a783..57e7055 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,23 +2,12 @@ image: java:8 stages: - build - - deploy - -before_script: - - chmod +x mvnw build: stage: build - script: ./mvnw package + script: gradle oxt artifacts: paths: - - target/demo-0.0.1-SNAPSHOT.jar + - build/distributions/w2phtml.oxt + - build/lib/w2phtml.jar -production: - stage: deploy - script: - - curl --location "https://cli.run.pivotal.io/stable?release=linux64-binary&source=github" | tar zx - - ./cf login -u $CF_USERNAME -p $CF_PASSWORD -a api.run.pivotal.io - - ./cf push - only: - - master