From 3c661e8f2347bbe5d1dab2ec9473e422e4417bed Mon Sep 17 00:00:00 2001 From: creylopez Date: Wed, 20 Aug 2025 08:23:39 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1ado=20def=20keyword?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6269f8e..7298fbd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,9 +7,9 @@ node { def tag = readFile('commit-id').replace("\n", "").replace("\r", "") // configura o nome da aplicação, o endereço do repositório e o nome da imagem com a versão - appName = "jenkins-docker-kubectl" - registryHost = "127.0.0.1:30400/" - imageName = "${registryHost}${appName}:${tag}" + def appName = "jenkins-docker-kubectl" + def registryHost = "127.0.0.1:30400/" + def imageName = "${registryHost}${appName}:${tag}" // Configuramos os estágios