Skip to content

Commit

Permalink
ci: Only try to download loadtest artifact after conclusion of CI wor…
Browse files Browse the repository at this point in the history
…kflow

Removing the condition when migrating the loadtest workflow was not helpufl, this
triggers the report job a few times per pipeline. The goal was to always download
the report, even when the overall pipeline fails because of some other jobs.
Explicitly checking for both success and failure should be enough.
  • Loading branch information
wolfgangwalther committed Feb 10, 2024
1 parent ca77731 commit dcfdd8d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
permissions:
checks: write
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure' }}
steps:
- name: Download from Artifacts
uses: dawidd6/action-download-artifact@v3
Expand Down

0 comments on commit dcfdd8d

Please sign in to comment.