Skip to content

Commit

Permalink
Fix: [AEA-0000] - Fix typo in java sonar (#10)
Browse files Browse the repository at this point in the history
## Summary

- Routine Change

### Details

It turns out that `'true' != true`

---------

Signed-off-by: Jim Wild <[email protected]>
  • Loading branch information
wildjames authored Nov 6, 2024
1 parent e3120b3 commit 18c2e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ jobs:
- name: "check is SONAR_TOKEN exists"
env:
super_secret: ${{ secrets.SONAR_TOKEN }}
if: ${{ env.super_secret != '' && inputs.run_sonar == 'true' }}
if: ${{ env.super_secret != '' && inputs.run_sonar == true }}
run: echo "SONAR_TOKEN_EXISTS=true" >> "$GITHUB_ENV"

- name: Run SonarQube analysis
Expand Down

0 comments on commit 18c2e69

Please sign in to comment.