Struchkov Mark
4ed0315854
Some checks reported errors
continuous-integration/drone/push Build was killed
24 lines
614 B
YAML
24 lines
614 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: haiti-framework
|
|
|
|
steps:
|
|
|
|
- name: publish
|
|
image: maven:3.8.4-openjdk-11
|
|
environment:
|
|
GPG_PRIVATE_KEY:
|
|
from_secret: GPG_PRIVATE_KEY
|
|
MAVEN_SETTINGS:
|
|
from_secret: MAVEN_SETTINGS
|
|
GPG_PASSPHRASE:
|
|
from_secret: GPG_PASSPHRASE
|
|
commands:
|
|
- echo "$GPG_PRIVATE_KEY" >> gpg.key
|
|
- echo "$MAVEN_SETTINGS" >> maven-settings.xml
|
|
- gpg --pinentry-mode loopback --passphrase $GPG_PASSPHRASE --import gpg.key
|
|
- mvn --settings maven-settings.xml -U -P ossrh,release clean deploy
|
|
|
|
trigger:
|
|
# ref:
|
|
# - refs/tags/v.*.*.* |