1
0
Fork 0

Compare commits

..

1 Commits

Author SHA1 Message Date
Fleur Kelpin 96f54ea8dc chore (Jenkinsfile): package and deploy 2018-09-29 19:05:50 +02:00
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -16,7 +16,7 @@ pipeline {
steps {
container('chart-testing'){
sh "mkdir target"
sh "for dir in charts/*; do helm package --destination target \"\$dir\"; done"
sh "for dir in charts/*; do helm package --destination target \"$dir\"; done"
}
}
}
@ -29,7 +29,7 @@ pipeline {
}
}
container('alpine') {
sh "for chart in target/*; do curl -L -u ${NEXUS_USER}:${NEXUS_PWD} http://registry.molgenis.org/repository/helm/ --upload-file \"\$chart\"; done"
sh "for chart in target/*; do curl -L -u ${NEXUS_USER}:${NEXUS_PWD} http://registry.molgenis.org/repository/helm/ --upload-file \"$chart\"; done"
}
}
}