godfather/.drone.yml

110 lines
2.4 KiB
YAML
Raw Permalink Normal View History

---
2022-12-18 04:34:17 +03:00
kind: pipeline
type: docker
2022-12-30 22:27:04 +03:00
name: snapshot-publish
trigger:
branch:
- develop
volumes:
- name: m2
host:
path: /drone/volume/m2
2022-12-18 04:34:17 +03:00
steps:
2022-12-30 22:27:04 +03:00
- name: publish
2023-12-03 09:31:06 +03:00
image: hub.docker.struchkov.dev/maven:3.9.5-eclipse-temurin-17-alpine
2022-12-18 06:57:06 +03:00
privileged: true
2022-12-18 04:34:17 +03:00
volumes:
- name: m2
path: /root/.m2/repository
environment:
MAVEN_SETTINGS:
from_secret: MAVEN_SETTINGS
commands:
2022-12-18 17:07:52 +03:00
- echo "$MAVEN_SETTINGS" >> maven-settings.xml
2022-12-30 22:27:04 +03:00
- mvn --settings maven-settings.xml -U -P snapshot clean deploy
2023-12-03 09:31:06 +03:00
image_pull_secrets:
- DOCKER_AUTH
2022-12-30 22:27:04 +03:00
---
kind: pipeline
type: docker
2023-01-17 02:18:52 +03:00
name: release-maven-central
2022-12-18 10:40:30 +03:00
2022-12-18 04:34:17 +03:00
trigger:
2022-12-18 17:07:52 +03:00
ref:
- refs/tags/v.*.*.*
2022-12-18 04:34:17 +03:00
volumes:
- name: m2
host:
path: /drone/volume/m2
2022-12-30 22:27:04 +03:00
steps:
- name: publish maven central
2023-12-03 09:31:06 +03:00
image: hub.docker.struchkov.dev/maven:3.9.5-eclipse-temurin-17-alpine
2022-12-30 22:27:04 +03:00
privileged: true
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
commands:
2024-06-24 16:49:11 +03:00
- apk add --no-cache gnupg
2022-12-30 22:27:04 +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 -U -P ossrh,release clean deploy
2023-01-17 02:18:52 +03:00
2023-12-03 09:31:06 +03:00
image_pull_secrets:
- DOCKER_AUTH
2023-01-17 02:18:52 +03:00
---
kind: pipeline
type: docker
name: release-struchkov-nexus
trigger:
ref:
- refs/tags/v.*.*.*
volumes:
- name: m2
host:
path: /drone/volume/m2
steps:
2023-01-17 02:24:54 +03:00
- name: publish struchkov nexus
2023-12-03 09:31:06 +03:00
image: hub.docker.struchkov.dev/maven:3.9.5-eclipse-temurin-17-alpine
2023-01-17 02:18:52 +03:00
privileged: true
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
commands:
2024-06-24 16:49:11 +03:00
- apk add --no-cache gnupg
2023-01-17 02:18:52 +03:00
- echo "$GPG_PRIVATE_KEY" >> gpg.key
- echo "$MAVEN_SETTINGS" >> maven-settings.xml
- gpg --pinentry-mode loopback --passphrase $GPG_PASSPHRASE --import gpg.key
2023-01-17 02:24:54 +03:00
- mvn --settings maven-settings.xml -U -P ossrh,release-struchkov-nexus clean deploy
2022-12-30 22:27:04 +03:00
2023-12-03 09:31:06 +03:00
image_pull_secrets:
- DOCKER_AUTH
---
kind: signature
2024-06-24 16:49:11 +03:00
hmac: af8e179fe00b1dfd731421af268fcd63b5aa4c78e1552f608e7613e2382bb2d5
...