We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad94163 commit a6744c5Copy full SHA for a6744c5
1 file changed
.github/workflows/sonarCube.yml
@@ -39,7 +39,12 @@ jobs:
39
/opt/build-wrapper/build-wrapper-linux-x86-64 --out-dir bw-output make -j$(nproc)
40
41
- name: Run SonarQube Scanner
42
- uses: sonarsource/sonarqube-scan-action@master
43
env:
44
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
45
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
+ run: |
46
+ sonar-scanner \
47
+ -Dsonar.projectKey=TDL \
48
+ -Dsonar.sources=source \
49
+ -Dsonar.host.url=$SONAR_HOST_URL \
50
+ -Dsonar.login=$SONAR_TOKEN
0 commit comments