2022-12-17 12:11:39 +03:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: haiti-framework
|
|
|
|
|
|
|
|
steps:
|
2022-12-17 12:42:32 +03:00
|
|
|
|
|
|
|
- name: publish
|
2022-12-17 12:49:20 +03:00
|
|
|
image: maven:3.8.4-openjdk-11
|
2022-12-17 13:29:42 +03:00
|
|
|
environment:
|
2022-12-17 13:32:13 +03:00
|
|
|
GPG_PRIVATE_KEY:
|
|
|
|
from_secret: GPG_PRIVATE_KEY
|
|
|
|
MAVEN_SETTINGS:
|
|
|
|
from_secret: MAVEN_SETTINGS
|
|
|
|
GPG_PASSPHRASE:
|
|
|
|
from_secret: GPG_PASSPHRASE
|
2022-12-17 12:20:07 +03:00
|
|
|
commands:
|
2022-12-17 13:43:17 +03:00
|
|
|
- echo ${TEST} >> test.txt && cat test.txt
|
2022-12-17 13:32:13 +03:00
|
|
|
- echo $GPG_PRIVATE_KEY >> gpg.key
|
|
|
|
- echo $MAVEN_SETTINGS >> maven-settings.xml
|
|
|
|
- gpg --pinentry-mode loopback --passphrase $GPG_PASSPHRASE --import gpg.key
|
2022-12-17 12:48:39 +03:00
|
|
|
- mvn --settings maven-settings.xml -U -P ossrh,release clean deploy
|
2022-12-17 12:42:32 +03:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
# ref:
|
|
|
|
# - refs/tags/v.*.*.*
|