Try and set the branch name

I figured out that the updater wasn't working because Jenkins was always setting the branch name to HEAD
This commit is contained in:
Telesphoreo 2022-04-22 02:42:28 -05:00
parent 67d8415fb3
commit e3c53a1f8e

3
Jenkinsfile vendored
View file

@ -1,5 +1,8 @@
pipeline {
agent any
environment {
BRANCH_NAME = "${GIT_BRANCH.split("/")[1]}"
}
options {
buildDiscarder logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '5')
}