6695-docker_push_3 #1423

Merged
alexm merged 424 commits from 6695-docker_push_3 into dev 2025-02-21 12:41:37 +00:00
1 changed files with 8 additions and 9 deletions
Showing only changes of commit 12edc10272 - Show all commits

17
Jenkinsfile vendored
View File

@ -100,18 +100,17 @@ pipeline {
def packageJson = readJSON file: 'package.json'
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
cleanDockerE2E()
def repoFolder = "salix"
if (fileExists(repoFolder)) {
dir(repoFolder) {
sh 'git pull'
}
} else {
sh "git clone dev https://gitea.verdnatura.es/verdnatura/salix.git"
}
}
// sh 'rm -rf salix'
// sh 'git clone dev https://gitea.verdnatura.es/verdnatura/salix.git'
def repoFolder = "salix"
if (fileExists(repoFolder)) {
dir(repoFolder) {
sh 'git pull'
}
} else {
sh "git clone dev https://gitea.verdnatura.es/verdnatura/salix.git"
}
}
}
stage('Up') {