adds Push to Nexus

This commit is contained in:
Hyatt 2022-02-07 15:34:10 -06:00
parent 4ca6497a28
commit 0ec41a4cf6
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

9
Jenkinsfile vendored
View File

@ -59,12 +59,19 @@ podTemplate(
} }
} }
stage ("Store Artifacts") { stage ("Store Jenkins Artifacts") {
archiveArtifacts (artifacts: "pihole-zone-generator", archiveArtifacts (artifacts: "pihole-zone-generator",
fingerprint: true, fingerprint: true,
allowEmptyArchive: false, allowEmptyArchive: false,
onlyIfSuccessful: true, onlyIfSuccessful: true,
) )
} }
functions.pushArtifact(
repoCreds: "nexus-generic-upload-bot",
fileName: "pihole-zone-generator",
filePath: "${workspace}/pihole-zone-generator",
fileURL: "https://nexus.c.test-chamber-13.lan/repository/generic/go/"
)
} }
} }