From 1e0a11bff4a398d59421de006ed40c158cee1c74 Mon Sep 17 00:00:00 2001 From: Marco Santos Date: Fri, 27 Sep 2024 19:11:48 +0100 Subject: [PATCH] Jenkins --- Jenkinsfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6663c0c..23b3c5b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,14 +1,15 @@ pipeline { - agent { - dockerfile { - filename 'Dockerfile' // Nome do Dockerfile (se for diferente, modifique aqui) - } - } + agent any stages { stage('Build') { steps { echo 'Construindo o projeto...' } } + stage('Deploys') { + steps { + echo 'DEploy o projeto...' + } + } } }