From 44665876e70b722caace4cd3596b830d6b4b0f85 Mon Sep 17 00:00:00 2001 From: George Vlahavas Date: Tue, 23 Mar 2021 01:48:15 +0200 Subject: [PATCH] Try stashing only api --- kea_testing.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kea_testing.groovy b/kea_testing.groovy index 0b73f4e..b4b42d3 100644 --- a/kea_testing.groovy +++ b/kea_testing.groovy @@ -23,14 +23,14 @@ pipeline { stage('Checkout the source code') { steps { checkout scm - stash 'kea-stash' + stash includes: 'api', name: 'kea-api' } } stage('Deploy Docker containers in DEV server') { steps { - unstash 'kea-stash' + unstash 'kea-api' script { docker.withServer("$DEPLOYMENT_HOST", "$DEPLOYMENT_HOST_CREDENTIALS") { docker.withRegistry("$PRIVATE_REGISTRY" , 'artifactory') { -- 2.2.2