add cicd on h2f environment test

This commit is contained in:
FaniryArilanto 2025-02-03 12:05:52 +03:00
parent c66d42e7a9
commit 2233ef6e03

9
Jenkinsfile vendored
View File

@ -9,5 +9,14 @@ pipeline {
sudo su jenkins -c "git stash && git pull origin staging" '''
}
}
stage ("deploy h2f to dev ezway") {
when { branch 'releases/release-h2f' }
agent { label 'apache && dev' }
steps {
sh '''cd /var/www/h2f-nextcloud/custom_apps
sudo su jenkins -c "git stash && git pull origin releases/release-h2f" '''
}
}
}
}