diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index 5f00d01..071c4d1 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -61,7 +61,7 @@ jobs:
run: dotnet tool update dotnet-sonarscanner --tool-path ./.sonar/scanner
- name: Start analyzation with SonarCloud
- run: ./.sonar/scanner/dotnet-sonarscanner begin /k:"TryAtSoftware_CleanTests" /o:"tryatsoftware" /d:sonar.cs.opencover.reportsPaths="**/coverage.opencover.xml" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
+ run: ./.sonar/scanner/dotnet-sonarscanner begin /k:"TryAtSoftware_CleanTests" /o:"tryatsoftware" /d:sonar.cs.opencover.reportsPaths="**/coverage.opencover.xml" /d:sonar.login="${{ env.SONAR_TOKEN }}"
- name: Restore dependencies
run: dotnet restore
@@ -73,4 +73,4 @@ jobs:
run: dotnet test --no-build --configuration "${{ env.CONFIGURATION }}" /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
- name: Finalize analyzation with SonarCloud
- run: ./.sonar/scanner/dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
+ run: ./.sonar/scanner/dotnet-sonarscanner end /d:sonar.login="${{ env.SONAR_TOKEN }}"
diff --git a/TryAtSoftware.CleanTests.Core/TryAtSoftware.CleanTests.Core.csproj b/TryAtSoftware.CleanTests.Core/TryAtSoftware.CleanTests.Core.csproj
index b708035..4f75bc3 100644
--- a/TryAtSoftware.CleanTests.Core/TryAtSoftware.CleanTests.Core.csproj
+++ b/TryAtSoftware.CleanTests.Core/TryAtSoftware.CleanTests.Core.csproj
@@ -8,7 +8,7 @@
false
TryAtSoftware.CleanTests
- 1.1.0-alpha.3
+ 1.1.0
Tony Troeff
https://github.com/TryAtSoftware/CleanTests
MIT