Day 81: Jenkins CI/CD Pipeline to Deploy a Web Application (Feb 15, 2024)
pipeline {
agent { label 'dev-server' }
stages {
stage('code clone') {
steps{
echo 'cloning'
git url: "https://github.com/hassanb111/django-notes-app", branch: "main"
}
}...
hassandevops.com2 min read