ci: Only try to download loadtest artifact after conclusion of CI workflow
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.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user