fix error in Jenkinsfile
This commit is contained in:
parent
ea53464cc8
commit
bcfd3733ef
1 changed files with 2 additions and 2 deletions
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -31,7 +31,7 @@ pipeline {
|
||||||
|
|
||||||
bat "${MXBUILD} .\\setup\\setup.sln /property:Configuration=Release"
|
bat "${MXBUILD} .\\setup\\setup.sln /property:Configuration=Release"
|
||||||
|
|
||||||
stash includes: '${SoundVision}.msi', name: 'installer build'
|
stash includes: "${APP_NAME}.msi", name: 'installer build'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Publish')
|
stage('Publish')
|
||||||
|
@ -40,7 +40,7 @@ pipeline {
|
||||||
echo 'publish Build'
|
echo 'publish Build'
|
||||||
unstash 'installer build'
|
unstash 'installer build'
|
||||||
|
|
||||||
cifsPublisher(publishers: [[configName: 'Interstellar Share', transfers: [[cleanRemote: false, excludes: '', flatten: false, makeEmptyDirs: false, noDefaultExcludes: false, patternSeparator: '[, ]+', remoteDirectory: 'Build${BUILD_NUMBER}', remoteDirectorySDF: false, removePrefix: '', sourceFiles: '${SoundVision}.msi']], usePromotionTimestamp: false, useWorkspaceInPromotion: false, verbose: true]])
|
cifsPublisher(publishers: [[configName: 'Interstellar Share', transfers: [[cleanRemote: false, excludes: '', flatten: false, makeEmptyDirs: false, noDefaultExcludes: false, patternSeparator: '[, ]+', remoteDirectory: 'Build${BUILD_NUMBER}', remoteDirectorySDF: false, removePrefix: '', sourceFiles: '${APP_NAME}.msi']], usePromotionTimestamp: false, useWorkspaceInPromotion: false, verbose: true]])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue