1
0
Fork 0
mirror of https://github.com/louislam/uptime-kuma.git synced 2025-03-15 04:30:29 +03:00

Added Jenkinsfile

This commit is contained in:
naivedhagrawal 2025-01-17 17:43:58 +05:30
parent be2faf64ce
commit b970777e2b

11
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('') {
steps {
sh 'echo "Hello"'
}
}
}
}