fix syntax

This commit is contained in:
piotrwrzodak 2023-04-21 00:11:12 +02:00
parent 3a16591ae5
commit fd20780401

View File

@ -1,14 +1,12 @@
pipeline {
agent any
properties([
parameters([
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
])
])
parameters {
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
}
stages {
stage('Copy Artifacts') {
steps {