basename correction
This commit is contained in:
parent
e11fdb8d6f
commit
65153037fb
@ -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/"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user