-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathJenkinsfile
52 lines (50 loc) · 1.46 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
properties([
parameters([
gitParameter(
branch: '',
branchFilter: 'origin/(.*)',
defaultValue: 'origin/main',
description: '',
name: 'GIT_BRANCH',
quickFilterEnabled: true,
selectedValue: 'DEFAULT',
sortMode: 'NONE',
tagFilter: '*',
useRepository: 'git@github.com:DarkflameUniverse/NexusDashboard.git',
type: 'PT_BRANCH',
listSize: "1"
)
])
])
node('worker'){
currentBuild.setDescription(params.GIT_BRANCH)
stage('Clone Code'){
checkout([
$class: 'GitSCM',
branches: [[name: params.GIT_BRANCH]],
extensions: [],
userRemoteConfigs: [
[
credentialsId: 'aronwk',
url: 'git@github.com:DarkflameUniverse/NexusDashboard.git'
]
]
])
}
def tag = ''
stage('Build Container'){
if (params.GIT_BRANCH.contains('main')){
tag = 'latest'
} else {
tag = params.GIT_BRANCH.replace('\\', '-')
}
sh "docker build -t aronwk/nexus-dashboard:$tag ."
}
stage('Push Container'){
withCredentials([usernamePassword(credentialsId: 'docker-hub-token', passwordVariable: 'password', usernameVariable: 'username')]) {
sh "docker login -u $username -p $password"
sh "docker push aronwk/nexus-dashboard:$tag"
sh "docker logout"
}
}
}