From 6332ef1c884596ae68702f11049d25f89bc9846a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20M=C3=BCehlencord?= Date: Wed, 1 Apr 2026 13:48:12 +0200 Subject: [PATCH] added debug output --- .gitea/workflows/ci.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index a1108bc..5516b7b 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -79,6 +79,15 @@ jobs: with: maven-version: ${{ inputs.maven_version }} + - id: debug-sonar + name: debug SONAR_TOKEN + run: | + if [ -z "${{ secrets.SONAR_TOKEN }}" ]; then + echo "SONAR_TOKEN is empty" + else + echo "SONAR_TOKEN is set" + fi + - name: Build with Maven working-directory: source run: mvn -B clean verify sonar:sonar org.cyclonedx:cyclonedx-maven-plugin:makeAggregateBom -Dsonar.host.url="${{ inputs.sonar_host }}" -Dsonar.token="${{ secrets.SONAR_TOKEN }}"