From 18e6ea2dce11353adf4b904cb42593ea0117ddfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D8=B4=D8=B1=D9=83=D8=A9=20=D8=AE=D8=A8=D9=8A=D8=B1=20?= =?UTF-8?q?=D8=A7=D9=84=D9=85=D8=AD=D8=AF=D9=88=D8=AF=D8=A9?= Date: Mon, 18 Aug 2025 13:42:00 +0300 Subject: [PATCH] Update github action file --- .github/workflows/sonarqube.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml index 37b01e629..fa7ff0f39 100644 --- a/.github/workflows/sonarqube.yml +++ b/.github/workflows/sonarqube.yml @@ -41,6 +41,7 @@ jobs: export PROJECT_NAME="Standard Modules ${SAFE_BRANCH_NAME^}" export SOURCE_FOLDER_NAME="${BRANCH_NAME#master_}" export PROJECT_VERSION="1.0" + export SONAR_HOST_URL=${{ secrets.SONAR_HOST_URL }} export SONAR_TOKEN=${{ secrets.SONAR_TOKEN }} sonar-scanner \ @@ -51,7 +52,7 @@ jobs: -Dsonar.inclusions="**/*.py, **/*.xml, **/*.js" \ -Dsonar.exclusions="**/__manifest__.py, **/migrations/**, **/__pycache__/**" \ -Dsonar.sourceEncoding="UTF-8" \ - -Dsonar.host.url="https://sonar.odex.sa" \ + -Dsonar.host.url="$SONAR_HOST_URL" \ -Dsonar.login="$SONAR_TOKEN" - name: Cleanup workspace