Update .gitea/workflows/sonarqube.yml
SonarQube Analysis / sonarqube (push) Failing after 2m45s

This commit is contained in:
2026-05-15 15:37:50 -05:00
parent 014f2e6370
commit f827492b30
+10
View File
@@ -32,6 +32,16 @@ jobs:
dotnet tool install --global dotnet-sonarscanner
echo "$HOME/.dotnet/tools" >> $GITHUB_PATH
- name: Debug token sanity check
run: |
curl -s -w "\nHTTP %{http_code}\n" \
-u "${{ secrets.SONAR_TOKEN }}:" \
"${{ secrets.SONAR_HOST_URL }}/api/plugins/installed" | head -5
echo "---"
curl -s -w "\nHTTP %{http_code}\n" \
-u "${{ secrets.SONAR_TOKEN }}:" \
"${{ secrets.SONAR_HOST_URL }}/api/authentication/validate"
- name: SonarScanner Begin
run: |
dotnet sonarscanner begin \