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