Skip to content

Commit

Permalink
chore: disable publication from ci.jenkins.io
Browse files Browse the repository at this point in the history
  • Loading branch information
lemeurherve committed Feb 9, 2024
1 parent 42a7fe0 commit 5c70bd1
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@Library('pipeline-library@pull/784/head') _

pipeline {
agent {
label 'jdk17'
Expand Down Expand Up @@ -28,7 +30,14 @@ pipeline {
}
stage('Docker image') {
steps {
parallelDockerUpdatecli([imageName: 'account-app', rebuildImageOnPeriodicJob: false, buildDockerConfig: [targetplatforms: 'linux/amd64,linux/arm64']])
parallelDockerUpdatecli([
imageName: 'account-app',
rebuildImageOnPeriodicJob: false,
buildDockerConfig: [
targetplatforms: 'linux/amd64,linux/arm64',
disablePublication: true
]
])
}
}
}
Expand Down

0 comments on commit 5c70bd1

Please sign in to comment.