From 25ecb71078778c1ee80c5b18ac4edf64dfaf55b2 Mon Sep 17 00:00:00 2001 From: "l.gabrysiak" Date: Sat, 1 Mar 2025 10:02:05 +0100 Subject: [PATCH] Jenkins mod file --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1dff220..65354a6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,12 +6,13 @@ pipeline { DOCKER_REGISTRY = 'docker.cloud.pokash.pl' GIT_REPO = 'https://repo.pokash.pl/POKASH.PL/ably.do.git' REGISTRY_CREDENTIALS_ID = '2753fc17-5ad1-4c78-b86a-a3e54c543adc' // ID poświadczeń do lokalnego rejestru + REPO_CREDENTIALS_TOKEN = '81f89202e969b8bc7c6905c8ff44b05004279998' } stages { stage('Checkout') { steps { - git url: "${GIT_REPO}", branch: 'main/webui' + git url: "${GIT_REPO}", branch: 'main/webui', credentialsId: "${REPO_CREDENTIALS_TOKEN}" } }