THANASOFT-DV/Jenkinsfile

14 lines
270 B
Groovy

pipeline {
agent any
stages {
stage ("deploy to dev ezway") {
when { branch 'staging' }
agent { label 'apache && dev' }
steps {
sh '''cd /var/www/nextcloud/nextcloud/custom_apps
sudo su jenkins -c "git pull origin staging" '''
}
}
}
}