From f932b663acf3c4b8b27c673927b5ac744638b17b Mon Sep 17 00:00:00 2001 From: Maikel van den Hurk Date: Thu, 20 Feb 2025 14:56:24 +0100 Subject: [PATCH] NO-JIRA docs(readme): use consistently vars.SONAR_HOST_URL --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9c5756d..5edcc96 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ jobs: - name: Install Build Wrapper uses: SonarSource/sonarqube-scan-action/install-build-wrapper@ env: - SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + SONAR_HOST_URL: ${{ vars.SONAR_HOST_URL }} - name: Run Build Wrapper run: | # Here goes your compilation wrapped with Build Wrapper @@ -115,7 +115,7 @@ jobs: uses: SonarSource/sonarqube-scan-action@ env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + SONAR_HOST_URL: ${{ vars.SONAR_HOST_URL }} SONAR_ROOT_CERT: ${{ secrets.SONAR_ROOT_CERT }} with: # Consult https://docs.sonarsource.com/sonarqube-server/latest/analyzing-source-code/scanners/sonarscanner/ for more information and options