From 03be5f9a564446a26ff7a1d70fdeeb81eec4042f Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Fri, 5 Jul 2024 14:11:04 +0200 Subject: [PATCH] ci: refs #7643 Reprepro SSH credentials fix --- Jenkinsfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1ca62ade..98b79e22 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -53,7 +53,8 @@ pipeline { steps { unstash 'debuildOutput' script { - debFile = sh(script: 'ls output/*.deb', returnStdout: true).trim() + def debPath = sh(script: 'ls output/*.deb', returnStdout: true).trim() + debFile = new File(debPath).getName() } withCredentials([sshUserPrivateKey( @@ -71,12 +72,12 @@ pipeline { } sshPut([ remote: remote, - from: "$debFile", - into: '/tmp' + from: 'output/*', + into: '/var/www/html/incoming' ]) sshCommand([ remote: remote, - command: "sudo -u www-data reprepro -b /reprepro --gnupghome /reprepro/.gnupg includedeb bookworm /tmp/$debFile" + command: "sudo -u www-data reprepro -b /reprepro --gnupghome /reprepro/.gnupg includedeb bookworm /var/www/html/incoming/$debFile" ]) } }