Skip to content

Commit

Permalink
fix: check condition on sonar analyze action for artifact file name
Browse files Browse the repository at this point in the history
  • Loading branch information
omar-muscatello-zupit authored May 13, 2024
1 parent 37deae0 commit 2639969
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/sonar/analyze/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ runs:

steps:
- name: Download coverage artifact
if: ${{ inputs.DOWNLOAD_ARTIFACT }}
if: ${{ inputs.DOWNLOAD_ARTIFACT == 'true' }}
uses: actions/download-artifact@v3
with:
name: ${{inputs.ARTIFACT_FILENAME}}
name: ${{ inputs.ARTIFACT_FILENAME }}
path: ${{ inputs.WORKING_DIRECTORY }}/${{ inputs.ARTIFACT_PATH }}

- name: SonarQube Scan
Expand Down

0 comments on commit 2639969

Please sign in to comment.