ci: refs #7643 Reprepro SSH credentials fix
gitea/hedera-web/pipeline/head There was a failure building this commit Details

This commit is contained in:
Juan Ferrer 2024-07-05 13:05:06 +02:00
parent ab88575c72
commit 444732460e
1 changed files with 16 additions and 15 deletions

5
Jenkinsfile vendored
View File

@ -56,18 +56,18 @@ pipeline {
debFile = sh(script: 'ls output/*.deb', returnStdout: true).trim()
}
script {
withCredentials([sshUserPrivateKey(
credentialsId: 'jenkins-agent',
usernameVariable: 'user',
keyFileVariable: 'identityFile'
)]) {
script {
remote.user = user
remote.identityFile = identityFile
remote.name = 'reprepro'
remote.host = 'reprepro.reprepro'
remote.allowAnyHosts = true
}
sshPut([
remote: remote,
from: "$debFile",
@ -80,6 +80,7 @@ pipeline {
}
}
}
}
stage('Container') {
when {
anyOf {