2023-02-18 19:54:07 +03:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: snapshot-publish
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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:06:00 +03:00
|
|
|
hmac: f713949c6ff55744433dcbfcc2c05b7cbe385d64efa05ca5f29dab4eb56f27b2
|
2023-02-18 19:54:07 +03:00
|
|
|
|
|
|
|
...
|