add Deploy
All checks were successful
albasheer-org/booking/pipeline/head This commit looks good

This commit is contained in:
mohanad albasheer 2025-10-01 16:51:04 +03:00
parent 81295a05b1
commit 91ee720f46

3
Jenkinsfile vendored
View File

@ -1,9 +1,8 @@
pipeline {
agent any
options { timestamps(); ansiColor('xterm') }
stages {
stage('Build') { steps { sh 'echo "Build..."' } }
stage('Test') { steps { sh 'echo "Test..."' } }
stage('Deploy'){ steps { sh 'echo "Deploy..."' } }
}
post { always { cleanWs() } }
}