Fix Jenkinsfile

This commit is contained in:
s487179 2023-04-15 13:42:34 +02:00
parent 45e2473d70
commit d9cb53b35a

View File

@ -1,10 +1,10 @@
pipeline {
agent any
parameters {
choice(
buildSelector(
name: 'BUILD_SELECTOR',
choices: ['lastSuccessfulBuild()', 'lastStableBuild()', 'specificBuild(123)', 'tags(\'release-*\')'],
description: 'Which build to use for copying artifacts'
defaultSelector: lastSuccessful(),
description: 'A build to take the artifacts from'
)
}
stages {