diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 91a8eaa..601dbca 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,13 +8,18 @@ stages: build: stage: build script: - - mvn package - artifacts: - paths: - - target/*.jar - expire_in: 1 week + - mvn install -B test: stage: test script: - - mvn test \ No newline at end of file + - mvn test + +production: + stage: production + script: + - mvn package + artifacts: + paths: + - target/*.jar + expire_in: 1 week \ No newline at end of file