added rclone config step

This commit is contained in:
matthias
2026-01-18 16:54:02 +01:00
parent 4e07ca5c82
commit b23dd8ec00

View File

@@ -36,6 +36,14 @@ pipeline {
}
}
}
stage('Getting RClone Configuration') {
steps {
configFileProvider([configFile(fileId: 'e0237193-1245-452e-b035-9d3d501f4c1b', variable: 'rclone_config')]) {
sh "mkdir -p ${WORKSPACE}/config"
sh "cp ${rclone_config} ${WORKSPACE}/config/rclone.conf"
}
}
}
stage('Run rclone') {
agent {