pruebaCI/Jenkinsfile

10 lines
159 B
Plaintext
Raw Normal View History

2023-12-19 17:11:42 -05:00
pipeline {
agent any
stages {
stage("Hello"){
steps {
echo "Hello World from appi3"
}
}
}
}