Skip to content

Commit 67704f7

Browse files
support withCredentials -- groovy file from tabs to spaces
1 parent f8f9697 commit 67704f7

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
package com.dabsquared.gitlabjenkins.connection.pipeline
22

33
node {
4-
withCredentials([[
5-
$class: 'com.dabsquared.gitlabjenkins.connection.GitLabApiTokenBinding',
6-
credentialsId: "apiTokenId",
7-
variable: "API_TOKEN1"
8-
]]) {
9-
println "Token1 is ${API_TOKEN1.substring(1)}"
10-
}
4+
withCredentials([[
5+
$class: 'com.dabsquared.gitlabjenkins.connection.GitLabApiTokenBinding',
6+
credentialsId: "apiTokenId",
7+
variable: "API_TOKEN1"
8+
]]) {
9+
println "Token1 is ${API_TOKEN1.substring(1)}"
10+
}
1111

12-
withCredentials([gitlabApiToken(
13-
credentialsId: "apiTokenId",
14-
variable: "API_TOKEN2"
15-
)]) {
16-
println "Token2 is ${API_TOKEN2.substring(1)}"
17-
}
12+
withCredentials([gitlabApiToken(
13+
credentialsId: "apiTokenId",
14+
variable: "API_TOKEN2"
15+
)]) {
16+
println "Token2 is ${API_TOKEN2.substring(1)}"
17+
}
1818
}

0 commit comments

Comments
 (0)