From 42e35b3f6facc66a75def30434daf187a70663a3 Mon Sep 17 00:00:00 2001 From: TiejunZhou <50469179+TiejunMS@users.noreply.github.com> Date: Fri, 24 Nov 2023 03:13:35 +0000 Subject: [PATCH] Use a different artifact name --- .github/workflows/regression_template.yml | 7 +++---- .github/workflows/regression_test.yml | 1 - 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/regression_template.yml b/.github/workflows/regression_template.yml index b1ce3cf6..b175ea87 100644 --- a/.github/workflows/regression_template.yml +++ b/.github/workflows/regression_template.yml @@ -132,7 +132,7 @@ jobs: uses: actions/upload-artifact@v3.1.3 if: ${{ inputs.skip_deploy }} with: - name: github-pages + name: coverage_report path: ${{ inputs.cmake_path }}/coverage_report - name: Upload Code Coverage Pages @@ -156,14 +156,13 @@ jobs: - uses: actions/download-artifact@v3 if: ${{ inputs.skip_test }} with: - name: github-pages - path: github-pages + name: coverage_report - name: Upload Code Coverage Pages uses: actions/upload-pages-artifact@v2.0.0 if: ${{ inputs.skip_test }} with: - path: github-pages + path: . - name: Deploy GitHub Pages site id: deployment diff --git a/.github/workflows/regression_test.yml b/.github/workflows/regression_test.yml index 3185f292..636f089c 100644 --- a/.github/workflows/regression_test.yml +++ b/.github/workflows/regression_test.yml @@ -32,5 +32,4 @@ jobs: uses: ./.github/workflows/regression_template.yml with: skip_test: true - skip_deploy: false deploy_list: "ThreadX SMP" \ No newline at end of file