diff --git a/.github/workflows/regression_template.yml b/.github/workflows/regression_template.yml index 664c077c..6d0e6d89 100644 --- a/.github/workflows/regression_template.yml +++ b/.github/workflows/regression_template.yml @@ -118,15 +118,21 @@ jobs: ${{ inputs.cmake_path }}/coverage_report/default_build_coverage${{ inputs.deploy_url_affix }} fi - - name: Upload GitHub Pages artifact - uses: actions/upload-pages-artifact@v2.0.0 + # - name: Upload GitHub Pages artifact + # uses: actions/upload-pages-artifact@v2.0.0 + # with: + # path: ${{ inputs.cmake_path }}/coverage_report + # name: coverage_report${{ inputs.deploy_url_affix }} + + - name: Upload Code Coverage + uses: actions/upload-artifact@v3.1.3 with: + name: coverage_report path: ${{ inputs.cmake_path }}/coverage_report - name: coverage_report${{ inputs.deploy_url_affix }} deploy_code_coverage: runs-on: ubuntu-latest - if: github.event_name == 'push' + if: github.event_name == 'push' && false needs: run_tests environment: name: github-pages