haiti-utils-field-constants/.gitlab-ci.yml

17 lines
373 B
YAML
Raw Normal View History

2022-02-13 15:36:31 +03:00
image: maven:3.8.4-openjdk-11
variables:
MAVEN_OPTS: "-Dmaven.repo.local=./.m2/repository"
stages:
- deploy
deploy:
stage: deploy
only:
2022-02-13 15:39:44 +03:00
- /^v.*$/
2022-02-13 15:36:31 +03:00
except:
- branches
before_script:
- gpg --pinentry-mode loopback --passphrase $GPG_PASSPHRASE --import $GPG_PRIVATE_KEY
script:
- 'mvn --settings $MAVEN_SETTINGS -U -P ossrh,release clean deploy'