update jenkinsfile

This commit is contained in:
Aaron Kimbre 2022-01-16 12:28:21 -06:00
parent 53ffe927f3
commit a91dcc6b7c

11
Jenkinsfile vendored
View File

@ -3,14 +3,14 @@ properties([
gitParameter( gitParameter(
branch: '', branch: '',
branchFilter: 'origin/(.*)', branchFilter: 'origin/(.*)',
defaultValue: 'origin/refactor', defaultValue: 'origin/main',
description: '', description: '',
name: 'BRANCH', name: 'BRANCH',
quickFilterEnabled: false, quickFilterEnabled: false,
selectedValue: 'NONE', selectedValue: 'DEFAULT',
sortMode: 'NONE', sortMode: 'NONE',
tagFilter: '*', tagFilter: '*',
useRepository: 'git@github.com:aronwk-aaron/AccountManager.git', useRepository: 'git@github.com:DarkflameUniverse/NexusDashboard.git',
type: 'PT_BRANCH' type: 'PT_BRANCH'
) )
]) ])
@ -25,15 +25,14 @@ node('worker'){
userRemoteConfigs: [ userRemoteConfigs: [
[ [
credentialsId: 'aronwk', credentialsId: 'aronwk',
url: 'git@github.com:aronwk-aaron/AccountManager.git' url: 'git@github.com:DarkflameUniverse/NexusDashboard.git'
] ]
] ]
]) ])
} }
def tag = '' def tag = ''
stage("Build Container"){ stage("Build Container"){
if (params.BRANCH.contains('main')){
if (params.BRANCH.contains('master')){
tag = 'latest' tag = 'latest'
} else { } else {
tag = params.BRANCH.replace('\\', '-') tag = params.BRANCH.replace('\\', '-')