Skip to content

Commit

Permalink
Correct condition syntax in "Prepare Coverage GitHub Pages" step.l (#329
Browse files Browse the repository at this point in the history
)

* Correct syntax.

* Update regression_template.yml

* Update regression_template.yml
  • Loading branch information
ting-ms committed Nov 30, 2023
1 parent 55673c2 commit 776ea21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/regression_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
- name: Prepare Coverage GitHub Pages
if: (!inputs.skip_coverage)
run: >-
if [ "${{ inputs.result_affix }}" != "" ] && [ inputs.skip_deploy ]; then
if [ "${{ inputs.result_affix }}" != "" ] && ${{ inputs.skip_deploy }}; then
mv ${{ inputs.cmake_path }}/coverage_report/${{ inputs.coverage_name }} \
${{ inputs.cmake_path }}/coverage_report/${{ inputs.result_affix }}
fi
Expand Down

0 comments on commit 776ea21

Please sign in to comment.