test → master #66

Merged
guillermo merged 70 commits from test into master 2024-07-23 06:23:47 +00:00
1 changed files with 1 additions and 9 deletions
Showing only changes of commit f863d8a897 - Show all commits

10
Jenkinsfile vendored
View File

@ -5,7 +5,6 @@ def BRANCH_ENV = [
master: 'production'
]
def remote = [:]
def changesFile
node {
stage('Setup') {
@ -43,19 +42,12 @@ pipeline {
files.each { file -> env.CHANGES_FILE = file.name }
}
withCredentials([sshUserPrivateKey(
credentialsId: 'jenkins-agent',
keyFileVariable: 'KEY_FILE'
)]) {
sh 'eval "$(ssh-agent -s)"'
sh 'ssh-add "$KEY_FILE"'
sshagent(credentials: ['jenkins-agent']) {
configFileProvider([
configFile(fileId: "dput.cf",
variable: 'DPUT_CONFIG')
]) {
echo env.DPUT_CONFIG
echo env.KEY_FILE
echo env.CHANGES_FILE
sh 'dput --config "$DPUT_CONFIG" verdnatura "$CHANGES_FILE"'
}