We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c2a107 commit bd4af09Copy full SHA for bd4af09
.github/workflows/ci.yml
@@ -227,6 +227,10 @@ jobs:
227
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
228
run: |
229
set -eux
230
+ if [ -z "${SONAR_TOKEN:-}" ]; then
231
+ echo "Will not execute SonarQube - SONAR_TOKEN not set."
232
+ exit 0
233
+ fi
234
# Hack - point sonarqube to the real sources not the copy of it
235
# See also https://community.sonarsource.com/t/scanning-platformio-c-embeded-projects/35141/2
236
sed -i 's|OpenBikeSensorFirmware/bin|OpenBikeSensorFirmware|g' \
0 commit comments