This commit is contained in:
2025-12-17 10:05:14 +03:00
parent 41449bbb36
commit e7ffa42d16

23
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,23 @@
pipeline {
agent any
stages {
stage('Deploy') {
steps {
sh '''
# Copy files to web directory
cp -r * /var/www/fymio.us/
'''
}
}
}
post {
success {
echo 'Deployment successful!'
}
failure {
echo 'Deployment failed!'
}
}
}