adding credentials
This commit is contained in:
parent
642870f192
commit
5a88cc575b
|
|
@ -1,10 +1,23 @@
|
|||
pipeline {
|
||||
agent any
|
||||
|
||||
environment {
|
||||
GIT_CREDENTIALS = '560c52f4-4213-4fb3-a757-620b6d3f119c' // This should be the ID of your Jenkins credentials
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Checkout') {
|
||||
steps {
|
||||
git branch: 'main', url: 'https://git.winteraccess.id/winter-access/backend_nam.git'
|
||||
checkout([
|
||||
$class: 'GitSCM',
|
||||
branches: [[name: '*/main']],
|
||||
doGenerateSubmoduleConfigurations: false,
|
||||
extensions: [],
|
||||
userRemoteConfigs: [[
|
||||
url: 'https://git.winteraccess.id/winter-access/backend_nam.git',
|
||||
credentialsId: env.GIT_CREDENTIALS
|
||||
]]
|
||||
])
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -17,7 +30,6 @@ pipeline {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
stage('Restart Service') {
|
||||
steps {
|
||||
// Add your deployment steps here
|
||||
|
|
|
|||
Loading…
Reference in New Issue