From 533874291a99a3d2ee3b517b22b02373086dcd7e Mon Sep 17 00:00:00 2001 From: cristiano Date: Sat, 2 May 2026 14:10:02 +1000 Subject: [PATCH] testing jenkinsfile --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d8b015b..2004c6b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,14 +3,14 @@ pipeline { stages { stage('Checkout') { steps { - withCredentials([string(credentialsId: 'jenkins', variable: 'd7624903f15d6e2e5f76d3ac001e9028eec2a6b5')]) { + withCredentials([string(credentialsId: 'jenkins', variable: 'MY_TOKEN')]) { if (isUnix()) { - sh 'git clone https://%d7624903f15d6e2e5f76d3ac001e9028eec2a6b5%@git.niascom.net/homelab/linux.git' + sh 'git clone https://$MY_TOKEN@ggit.niascom.net/homelab/linux.gi' } else { - bat 'git clone https://%d7624903f15d6e2e5f76d3ac001e9028eec2a6b5%@git.niascom.net/homelab/linux.git' + bat 'git clone https://%MY_TOKEN%@git.niascom.net/homelab/linux.git' } } } } } -} +}