From 8cca9e4fd37d08dd133cf25f28d8bdf2975944b4 Mon Sep 17 00:00:00 2001 From: Charlie Collett Date: Thu, 29 Aug 2024 15:44:15 -0700 Subject: [PATCH] Run job always --- .github/workflows/docker-matrix.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker-matrix.yml b/.github/workflows/docker-matrix.yml index 36b4720..4834ee5 100644 --- a/.github/workflows/docker-matrix.yml +++ b/.github/workflows/docker-matrix.yml @@ -47,7 +47,7 @@ jobs: fi generate-summary: runs-on: ubuntu-latest - needs: Matrix + if: always() steps: - name: Checkout code uses: actions/checkout@v4 @@ -70,8 +70,8 @@ jobs: run: | python summary.py > summary_report.txt - # - name: Upload Summary Report Artifact - # uses: actions/upload-artifact@v3 - # with: - # name: test-summary-report - # path: summary_report.txt \ No newline at end of file + - name: Upload Summary Report Artifact + uses: actions/upload-artifact@v3 + with: + name: test-summary-report + path: summary_report.txt \ No newline at end of file