From f2674379ad171e4bc3b98cc19c778629ff2ae919 Mon Sep 17 00:00:00 2001 From: TiejunZhou <50469179+TiejunMS@users.noreply.github.com> Date: Fri, 24 Nov 2023 03:04:15 +0000 Subject: [PATCH] Set destination for downloaded artifact --- .github/workflows/regression_template.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/regression_template.yml b/.github/workflows/regression_template.yml index 3c85a3b5..b1ce3cf6 100644 --- a/.github/workflows/regression_template.yml +++ b/.github/workflows/regression_template.yml @@ -154,14 +154,16 @@ jobs: steps: - uses: actions/download-artifact@v3 + if: ${{ inputs.skip_test }} with: name: github-pages + path: github-pages - name: Upload Code Coverage Pages uses: actions/upload-pages-artifact@v2.0.0 - if: inputs.skip_test + if: ${{ inputs.skip_test }} with: - path: . + path: github-pages - name: Deploy GitHub Pages site id: deployment