blob: b478fb35d279dc5ba8331328c8e1486e301315df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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' }
}
}
}
|