ium_464937/Jenkinsfile

10 lines
147 B
Plaintext
Raw Normal View History

2024-03-26 17:53:46 +01:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'elo 420'
}
}
}
}