aboutsummaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorChristian Segundo2024-04-07 21:39:46 +0200
committerChristian Segundo2024-04-07 21:39:46 +0200
commit61040f382eb7e5a61f8a12ddf5147a5a4556b923 (patch)
treef32ead3b5dcb29bbd61f5f996f0134a70388c7eb /Jenkinsfile
parent76a08088a70fcb26bf85a98c562be5fbb92b229a (diff)
downloadnvim-61040f382eb7e5a61f8a12ddf5147a5a4556b923.tar.gz
update readme
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile22
1 files changed, 22 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..b478fb3
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,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' }
+ }
+ }
+}