diff --git a/Jenkinsfile b/Jenkinsfile index 65354a6..1dff220 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,13 +6,12 @@ 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', credentialsId: "${REPO_CREDENTIALS_TOKEN}" + git url: "${GIT_REPO}", branch: 'main/webui' } }