pipeline { agent any environment { GIT_CREDENTIALS = '560c52f4-4213-4fb3-a757-620b6d3f119c' // This should be the ID of your Jenkins credentials } stages { stage('Checkout') { steps { checkout([ $class: 'GitSCM', branches: [[name: '*/main']], doGenerateSubmoduleConfigurations: false, extensions: [], userRemoteConfigs: [[ url: 'https://git.winteraccess.id/winter-access/backend_nam.git', credentialsId: env.GIT_CREDENTIALS ]] ]) } } stage('Pulling, Building, and Deploying') { steps { sh 'cd /home/developer/backend_nam' sh 'git pull origin main' sh 'go mod tidy' sh 'go build -o myapp' } } stage('Restart Service') { steps { // Add your deployment steps here sh 'sudo systemctl daemon-reload' sh 'sudo systemctl restart backend-nam' } } } }