basename correction

This commit is contained in:
Hyatt 2023-03-09 18:35:46 -06:00
parent e11fdb8d6f
commit 65153037fb
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -183,22 +183,22 @@ pipeline {
steps { steps {
container('alpine') { container('alpine') {
script { script {
def appName = sh ( def aName = sh (
script: """ script: """
printf '%s\\n' "\$(basename "\$(find ./ -name "*.AppImage")")" printf '%s\\n' "\$(basename "\$(find ./ -name "*.AppImage")")"
""", """,
returnStdout: true returnStdout: true
).trim() ).trim()
def appLoc = sh ( def aPath = sh (
script: """ script: """
printf '%s\\n' "\$(find ./ -name "*.AppImage")" printf '%s\\n' "\$(dirname "\$(find ./ -name "*.AppImage")")"
""", """,
returnStdout: true returnStdout: true
).trim() ).trim()
functions.pushArtifact( functions.pushArtifact(
repoCreds: "nexus-generic-upload-bot", repoCreds: "nexus-generic-upload-bot",
fileName: appName, fileName: aName,
filePath: workspace + "/" + appLoc, filePath: workspace + "/" + aPath,
fileURL: "https://nexus.c.test-chamber-13.lan/repository/generic/appimage/" fileURL: "https://nexus.c.test-chamber-13.lan/repository/generic/appimage/"
) )
} }