ium_444417/Jenkinsfile

14 lines
336 B
Plaintext
Raw Normal View History

2022-03-23 11:09:04 +01:00
node {
stage('Preparation') {
properties([
parameters([
string(
defaultValue: 'Hello World!',
description: 'Tekst do wyświetlenie',
name: 'INPUT_TEXT',
trim: false
)
])
])
}
}