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