Create Jenkins file

Signed-off-by: Ramesh05 <61681213+Ramesh05@users.noreply.github.com>
This commit is contained in:
Ramesh05 2025-06-21 18:12:41 +05:30 committed by GitHub
parent 0be14cfd22
commit f8e2dc9df6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

14
Jenkins file Normal file
View file

@ -0,0 +1,14 @@
pipeline {
agent any
stages {
stage('git') {
}
stage('build') {
}
stage('install') {
}
stage ('deploy') {
}
}
}