basename correction
This commit is contained in:
parent
e11fdb8d6f
commit
65153037fb
@ -183,22 +183,22 @@ pipeline {
|
||||
steps {
|
||||
container('alpine') {
|
||||
script {
|
||||
def appName = sh (
|
||||
def aName = sh (
|
||||
script: """
|
||||
printf '%s\\n' "\$(basename "\$(find ./ -name "*.AppImage")")"
|
||||
""",
|
||||
returnStdout: true
|
||||
).trim()
|
||||
def appLoc = sh (
|
||||
def aPath = sh (
|
||||
script: """
|
||||
printf '%s\\n' "\$(find ./ -name "*.AppImage")"
|
||||
printf '%s\\n' "\$(dirname "\$(find ./ -name "*.AppImage")")"
|
||||
""",
|
||||
returnStdout: true
|
||||
).trim()
|
||||
functions.pushArtifact(
|
||||
repoCreds: "nexus-generic-upload-bot",
|
||||
fileName: appName,
|
||||
filePath: workspace + "/" + appLoc,
|
||||
fileName: aName,
|
||||
filePath: workspace + "/" + aPath,
|
||||
fileURL: "https://nexus.c.test-chamber-13.lan/repository/generic/appimage/"
|
||||
)
|
||||
}
|
||||
|
Reference in New Issue
Block a user