chore: remove unnecesary info from Jenkinsfile

This commit is contained in:
jinhojang6 2024-09-27 22:52:59 +09:00
parent a421c3e889
commit 44c733681a
No known key found for this signature in database
GPG Key ID: 1762F21FE8B543F8

12
Jenkinsfile vendored
View File

@ -27,18 +27,6 @@ pipeline {
stage('Build') {
steps {
script {
withCredentials([
string(
credentialsId: 'acid-info-github-token',
variable: 'NEXT_GITHUB_PERSONAL_ACCESS_TOKEN'
),
]) {
image = docker.build(
"${IMAGE_NAME}:${GIT_COMMIT.take(8)}",
["--build-arg='NEXT_GITHUB_PERSONAL_ACCESS_TOKEN=${NEXT_GITHUB_PERSONAL_ACCESS_TOKEN}'",
"."].join(' ')
)
}
}
}
}