From 0d005789787319443f54a7ff7bf37cb0cd7e397a Mon Sep 17 00:00:00 2001 From: Trung Nguyen Date: Fri, 23 Aug 2024 14:03:25 -0500 Subject: [PATCH] move download artifacts to a separate step --- .github/workflows/quick-regression.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/quick-regression.yml b/.github/workflows/quick-regression.yml index 3aed9384c9..fd7d292c2b 100644 --- a/.github/workflows/quick-regression.yml +++ b/.github/workflows/quick-regression.yml @@ -71,7 +71,6 @@ jobs: ccache -s - name: Run Selected Regression Tests - uses: actions/download-artifact@v4 shell: bash run: | source linuxenv/bin/activate @@ -81,7 +80,11 @@ jobs: --config-file=tools/regression-tests/config.yaml \ --list-input=folder_list.txt tar -cvf quick-regression-test.tar run.log progress.yaml + + - name: Download artifacts + uses: actions/download-artifact@v4 with: name: quick-regression-test-artifact path: quick-regression-test.tar + retention-days: 5