Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippSchmelter committed Oct 17, 2024
1 parent 50386fc commit 33007be
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ jobs:
-Dsonar.login=${{ secrets.SONAR_TOKEN }} \
-Dsonar.branch.name=${{ github.head_ref || github.ref_name }}
- name: Check if SonarQube Report Exists
id: verify-report
run: |
if [ ! -f ".scannerwork/report-task.txt" ]; then
echo "SonarQube report not found. Exiting."
exit 1
fi
- name: SonarQube Quality Gate
id: sonarqube-quality-gate-check
uses: sonarsource/sonarqube-quality-gate-action@master
Expand Down

0 comments on commit 33007be

Please sign in to comment.