André Silva Paulino

Adicionando mais um estágio no pipeline

... ... @@ -3,18 +3,27 @@ pipeline {
stages {
stage('Build') {
steps {
script {
echo "teste de build"
}
}
}
stage('Test') {
steps {
script {
echo "teste de test"
}
}
}
}
stage('Deploy') {
steps {
script {
echo "teste de deploy"
}
}
}
}
... ...