godfather/.drone.yml

37 lines
937 B
YAML
Raw Normal View History

2022-12-18 04:34:17 +03:00
kind: pipeline
type: docker
name: haiti-framework
steps:
- name: publish maven central
2022-12-18 06:24:54 +03:00
image: maven:3.8.5-openjdk-17
2022-12-18 04:34:17 +03:00
volumes:
- name: m2
path: /root/.m2/repository
environment:
GPG_PRIVATE_KEY:
from_secret: GPG_PRIVATE_KEY
MAVEN_SETTINGS:
from_secret: MAVEN_SETTINGS
GPG_PASSPHRASE:
from_secret: GPG_PASSPHRASE
2022-12-18 06:18:33 +03:00
SSH_KEY:
from_secret: SSH_KEY
2022-12-18 04:34:17 +03:00
commands:
2022-12-18 06:25:41 +03:00
- eval $(ssh-agent -s)
2022-12-18 06:20:36 +03:00
- echo "$SSH_KEY" | ssh-add -
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
2022-12-18 04:34:17 +03:00
- 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 -T 1C -U release:clean release:prepare release:perform --batch-mode
2022-12-18 04:34:17 +03:00
trigger:
2022-12-18 05:35:56 +03:00
branch:
- master
2022-12-18 04:34:17 +03:00
volumes:
- name: m2
host:
path: /drone/volume/m2