Настройка сборки drone
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Some checks reported errors
continuous-integration/drone/push Build encountered an error
This commit is contained in:
parent
c15337d5e4
commit
b5fa479f47
30
.drone.yml
30
.drone.yml
@ -3,16 +3,30 @@ type: docker
|
|||||||
name: haiti-framework
|
name: haiti-framework
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build
|
|
||||||
image: node
|
- name: publish
|
||||||
|
image: maven:3.8.6-openjdk-11
|
||||||
volumes:
|
volumes:
|
||||||
- name: cache
|
- name: m2
|
||||||
path: /tmp/cache
|
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:
|
commands:
|
||||||
- npm install
|
- echo "$GPG_PRIVATE_KEY" >> gpg.key
|
||||||
- npm test
|
- 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
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
# ref:
|
||||||
|
# - refs/tags/v.*.*.*
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: cache
|
- name: m2
|
||||||
host:
|
host:
|
||||||
path: /var/lib/cache
|
path: $${PATH_MAVEN_M2}
|
Loading…
Reference in New Issue
Block a user