From 0b4a1044ced13414e483acb6a8c1ec638c0266d5 Mon Sep 17 00:00:00 2001 From: Joseph Sawyer Date: Tue, 22 Oct 2024 19:43:57 +0100 Subject: [PATCH] exclude /**/* --- .github/workflows/sonarscan.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonarscan.yml b/.github/workflows/sonarscan.yml index 7cd9dc039..a4776ff1c 100644 --- a/.github/workflows/sonarscan.yml +++ b/.github/workflows/sonarscan.yml @@ -45,6 +45,6 @@ jobs: # The organization and project arguments (see /o and /k) are displayed # on the project dashboard in SonarCloud. run: | - .\.sonar\scanner\dotnet-sonarscanner begin /k:"Ombi-app_Ombi" /o:"ombi-app" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.exclusions="src/Ombi.Store/Migrations/**" + .\.sonar\scanner\dotnet-sonarscanner begin /k:"Ombi-app_Ombi" /o:"ombi-app" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.exclusions="src/Ombi.Store/Migrations/**/*" dotnet build src/Ombi.sln -c NonUiBuild .\.sonar\scanner\dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"