We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 914bae2 commit cd0a514Copy full SHA for cd0a514
.github/workflows/sonarcloud.yml
@@ -51,12 +51,12 @@ jobs:
51
run: |
52
.\.sonar\scanner\dotnet-sonarscanner begin `
53
/k:"sir-gon_algorithm-exercises-csharp" `
54
- /o:"sir-gon" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" `
+ /o:"sir-gon" /d:sonar.token="${{ env.SONAR_TOKEN }}" `
55
/d:sonar.host.url="https://sonarcloud.io" `
56
/d:sonar.cs.opencover.reportsPaths=**/coverage.opencover.xml
57
58
dotnet restore
59
dotnet build --no-restore
60
dotnet test --no-build --verbosity normal
61
.\.sonar\scanner\dotnet-sonarscanner end `
62
- /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
+ /d:sonar.token="${{ env.SONAR_TOKEN }}"
0 commit comments