Skip to content

Commit 776ea21

Browse files
author
Ting Zhu
authored
Correct condition syntax in "Prepare Coverage GitHub Pages" step.l (#329)
* Correct syntax. * Update regression_template.yml * Update regression_template.yml
1 parent 55673c2 commit 776ea21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/regression_template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
- name: Prepare Coverage GitHub Pages
135135
if: (!inputs.skip_coverage)
136136
run: >-
137-
if [ "${{ inputs.result_affix }}" != "" ] && [ inputs.skip_deploy ]; then
137+
if [ "${{ inputs.result_affix }}" != "" ] && ${{ inputs.skip_deploy }}; then
138138
mv ${{ inputs.cmake_path }}/coverage_report/${{ inputs.coverage_name }} \
139139
${{ inputs.cmake_path }}/coverage_report/${{ inputs.result_affix }}
140140
fi

0 commit comments

Comments
 (0)