From 06786bf7f57651812d7a301d2f88e7db29f4ae0c Mon Sep 17 00:00:00 2001 From: Paul Latzelsperger <43503240+paullatzelsperger@users.noreply.github.com> Date: Wed, 26 Apr 2023 18:34:59 +0200 Subject: [PATCH] chore(build): add GHA variables for sonar project and org (#287) * chore(build): add GHA variables for sonar project and org * trigger ci --- .github/workflows/verify.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify.yaml b/.github/workflows/verify.yaml index f24fee8d4..e2409f542 100644 --- a/.github/workflows/verify.yaml +++ b/.github/workflows/verify.yaml @@ -151,8 +151,8 @@ jobs: run: |- ./gradlew sonar \ -Pcoverage,failsafe \ - -Dsonar.projectKey=${GITHUB_REPOSITORY_OWNER}_product-edc \ - -Dsonar.organization=${GITHUB_REPOSITORY_OWNER} \ + -Dsonar.projectKey=${{ vars.SONAR_PROJECT_KEY }} \ + -Dsonar.organization=${{ vars.SONAR_ORGANIZATION }} \ -Dsonar.host.url=https://sonarcloud.io \ -Dsonar.coverage.jacoco.xmlReportPaths=${GITHUB_WORKSPACE}/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml \ -Dsonar.verbose=true