hi team how can pass my github credentials in my jenkins declarative pipeline please helpme out how can i add my git hub credentials user name and password and url in my jenkins pipeline, if i add the user name and password if i add the password in to my pipeline some one how can i push my files in to my git using jenkins declarative pipeline .
i know how to use the jenkins syntax generator , but i want to know how to pass a credentials using jenkins declarative pipeline. please help any one
pipeline{ agent any stages{ stage('git-log'){ // withCredentials([usernamePassword(credentialsId: 'ramesh-git', usernameVariable: 'raja12', passwordVariable: 'Rakae12')]) steps{ withCredentials([usernamePassword(credentialsId: 'ramesh-git', usernameVariable: 'raja12', passwordVariable: 'Rakae12')]) sh 'git clone https://github.com/trdy43/test-play.git'
}
}
}
}
You need to store your credentials on Jenkins Credentials Store.
Then you will be able to access your credentials with
This will create and populate two environment variables: one for username MY_CREDENTIALS_USR, other for password MY_CREDENTIALS_PSW.
You can then access the environment variables by calling their names: