Skip to content

Commit

Permalink
[10.0.x] NO-ISSUE: Fix kogito apps git reference in the release cloud…
Browse files Browse the repository at this point in the history
… job (#1243)

* Fix kogito apps git reference in the release cloud job

* Fix kogito apps git reference in the release cloud job
  • Loading branch information
rodrigonull authored Aug 28, 2024
1 parent c2650e9 commit 4ab513e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/jenkins/Jenkinsfile.release.cloud
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pipeline {
steps {
script {
env.APPS_URI = params.APPS_URI ?: (getReleaseProperty('apps.uri') ?: "https://github.com/${getGitAuthor()}/incubator-kie-kogito-apps")
env.APPS_REF = params.APPS_REF ?: (getReleaseProperty('apps.ref') ?: getReleaseVersion())
env.APPS_REF = params.APPS_REF ?: (getReleaseProperty('apps.ref') ?: getGitTagName())

echo "Got apps uri ${env.APPS_URI}"
echo "Got apps ref ${env.APPS_REF}"
Expand Down

0 comments on commit 4ab513e

Please sign in to comment.