Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
verinice-veo#1116
  • Loading branch information
jochenkemnade committed Dec 4, 2024
1 parent de33fd9 commit 53697ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ build:
if [ "$CI_COMMIT_REF_NAME" = "main" ]; then export ADDITIONAL_TAGS="$ADDITIONAL_TAGS,latest"; fi;
fi;
if [ "$CI_COMMIT_REF_NAME" = "develop" ]; then export ADDITIONAL_TAGS="$ADDITIONAL_TAGS,develop"; fi;
- ./gradlew -i -PciBuildNumer=$CI_PIPELINE_ID -PciJobName=$CI_PROJECT_NAME/$CI_COMMIT_REF_NAME -PciCommitId=$CI_COMMIT_SHA jib -Djib.console=plain -Djib.to.image="$IMAGE_NAME:gitlab-git-${CI_COMMIT_SHA}" -Djib.to.tags="$ADDITIONAL_TAGS"
- ./gradlew -i -PciBuildNumber=$CI_PIPELINE_ID -PciJobName=$CI_PROJECT_NAME/$CI_COMMIT_REF_NAME -PciCommitId=$CI_COMMIT_SHA jib -Djib.console=plain -Djib.to.image="$IMAGE_NAME:gitlab-git-${CI_COMMIT_SHA}" -Djib.to.tags="$ADDITIONAL_TAGS"
interruptible: true
cache:
- key: gradle
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ pmdTest.enabled = false
springBoot {
buildInfo {
properties {
if (rootProject.hasProperty('ciBuildNumer')) {
if (rootProject.hasProperty('ciBuildNumber')) {
additional = [
'ci.buildnumber': rootProject.getProperty('ciBuildNumer'),
'ci.buildnumber': rootProject.getProperty('ciBuildNumber'),
'ci.jobname': rootProject.getProperty('ciJobName')
]
}
Expand Down

0 comments on commit 53697ad

Please sign in to comment.