blob: d7b1888aaf5ca94d61381c040673d15a80c56a43 (
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/nvim'
SHORT_DESCRIPTION = 'Neovim images for CI'
README_FILEPATH = './README.md'
}
steps { sh '/entrypoint.sh' }
}
}
post {
always {
step([$class: 'Mailer',
notifyEveryUnstableBuild: true,
recipients: "christian+jenkins@segundo.io",
sendToIndividuals: true])
}
}
}
|