feat: refs #8248 Added beta in jenkinsfile
gitea/salix/pipeline/pr-beta This commit looks good Details

This commit is contained in:
Guillermo Bonet 2024-12-05 08:47:28 +01:00
parent 187cd226c4
commit 7b2439cb39
1 changed files with 4 additions and 2 deletions

6
Jenkinsfile vendored
View File

@ -7,7 +7,8 @@ def RUN_BUILD
def BRANCH_ENV = [
test: 'test',
master: 'production'
master: 'production',
beta: 'production'
]
node {
@ -18,7 +19,8 @@ node {
PROTECTED_BRANCH = [
'dev',
'test',
'master'
'master',
'beta'
].contains(env.BRANCH_NAME)
FROM_GIT = env.JOB_NAME.startsWith('gitea/')