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:
Wolfgang Walther
2024-02-10 20:42:06 +01:00
parent ca777315b0
commit dcfdd8dfc9
+1
View File
@@ -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