haiti-framework/.gitlab-ci.yml
Struchkov Mark 5922f207f5 CICD
2022-01-21 18:12:52 +03:00

19 lines
336 B
YAML

image: 3.8.4-openjdk-11-slim
variables:
MAVEN_OPTS: "-Dmaven.repo.local=./.m2/repository"
stages:
- build
- deploy
build:
stage: build
only:
- /^release-.*$/
except:
- branches
script:
- 'mvn --settings $MAVEN_SETTINGS -U -P ossrh -P release clean deploy'
artifacts:
paths:
- backend/target/*.jar