117 lines
2.6 KiB
YAML
Raw Normal View History

2023-02-18 19:54:07 +03:00
---
kind: pipeline
type: docker
name: snapshot-publish
2024-08-21 13:10:20 +03:00
image_pull_secrets:
- DOCKER_AUTH
2023-02-18 19:54:07 +03:00
trigger:
branch:
- develop
volumes:
- name: m2
host:
path: /drone/volume/m2
steps:
- name: publish
2024-08-21 13:06:00 +03:00
# https://hub.docker.com/_/maven
image: hub.docker.struchkov.dev/maven:3.9-eclipse-temurin-17-alpine
2023-02-18 19:54:07 +03:00
privileged: true
volumes:
- name: m2
path: /root/.m2/repository
environment:
MAVEN_SETTINGS:
from_secret: MAVEN_SETTINGS
commands:
- echo "$MAVEN_SETTINGS" >> maven-settings.xml
- mvn --settings maven-settings.xml -U -P snapshot clean deploy
---
kind: pipeline
type: docker
name: release-maven-central
2024-08-21 13:10:20 +03:00
image_pull_secrets:
- DOCKER_AUTH
2023-02-18 19:54:07 +03:00
trigger:
ref:
- refs/tags/v.*.*.*
volumes:
- name: m2
host:
path: /drone/volume/m2
steps:
- name: publish maven central
2024-08-21 13:06:00 +03:00
# https://hub.docker.com/_/maven
image: hub.docker.struchkov.dev/maven:3.9-eclipse-temurin-17-alpine
2023-02-18 19:54:07 +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-01-19 19:49:28 +03:00
- apk add --no-cache gnupg
2023-02-18 19:54:07 +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
---
kind: pipeline
type: docker
name: release-struchkov-nexus
2024-08-21 13:10:20 +03:00
image_pull_secrets:
- DOCKER_AUTH
2023-02-18 19:54:07 +03:00
trigger:
ref:
- refs/tags/v.*.*.*
volumes:
- name: m2
host:
path: /drone/volume/m2
steps:
- name: publish struchkov nexus
2024-08-21 13:06:00 +03:00
# https://hub.docker.com/_/maven
image: hub.docker.struchkov.dev/maven:3.9-eclipse-temurin-17-alpine
2023-02-18 19:54:07 +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-01-19 19:49:28 +03:00
- apk add --no-cache gnupg
2023-02-18 19:54:07 +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-struchkov-nexus clean deploy
2024-08-21 13:06:00 +03:00
# drone sign --save Godfather-Bots/telegram-bot-spring-boot-starter
2023-02-18 19:54:07 +03:00
---
kind: signature
2024-08-21 13:10:20 +03:00
hmac: 93f3708b1af7039d1123b22c8d5451b517042238efc2ff6dac791431c15d55b1
2023-02-18 19:54:07 +03:00
...