corrects syntax

This commit is contained in:
Hyatt 2023-10-29 11:50:25 -05:00
parent 4e247ed59e
commit 0874289fcf
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -99,6 +99,7 @@ pipeline {
stage ("Build Signal") {
steps {
container ("node-18") {
script {
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getCurrentRootCA())
sh """
git config --global --add safe.directory '*'
@ -120,9 +121,11 @@ pipeline {
}
}
}
}
stage ('Push Artifacts') {
steps {
script {
functions.pushArtifact(
repoCreds: "nexus-generic-upload-bot",
fileName: outputFile,
@ -132,4 +135,5 @@ pipeline {
}
}
}
}
}