Merge branch 'feature/add-cicd-h2f' into 'releases/release-h2f'

add cicd on h2f environment test

See merge request ezwaytechnology/nextcloud_custom_apps!2
This commit is contained in:
Faniry Arilanto 2025-02-03 09:07:46 +00:00
commit 90216e6a1f

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" '''
}
}
}
}