blob: 16f0c69dcc30d302b1c33c908e9a2dbda5c8ee42 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
pipeline {
agent any
options { ansiColor('xterm') }
stages {
stage('Publish') {
agent {
docker {
image 'peterevans/dockerhub-description:3'
args '--entrypoint ""'
}
}
environment {
DOCKERHUB_USERNAME = 'chn2guevara'
DOCKERHUB_PASSWORD = credentials('DOCKERHUB_TOKEN')
DOCKERHUB_REPOSITORY = 'chn2guevara/languagetool'
SHORT_DESCRIPTION = 'LanguageTool image with ngrams auto-download'
README_FILEPATH = './README.md'
}
steps { sh '/entrypoint.sh' }
}
}
post {
always {
step([$class: 'Mailer',
notifyEveryUnstableBuild: true,
recipients: "christian+jenkins@segundo.io",
sendToIndividuals: true])
}
}
}
|