summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTing Zhu <[email protected]>2023-11-30 10:52:29 +0800
committerGitHub <[email protected]>2023-11-30 10:52:29 +0800
commit776ea213ced90956582ba948469bc17378425a8b (patch)
tree286db34f3ef30fa2576ec5060ca906ce186ff309
parent55673c2410ed69279f1d8d7d69030458db912dbf (diff)
Correct condition syntax in "Prepare Coverage GitHub Pages" step.l (#329)
* Correct syntax. * Update regression_template.yml * Update regression_template.yml
-rw-r--r--.github/workflows/regression_template.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/regression_template.yml b/.github/workflows/regression_template.yml
index 3dd1b8c8..d8501f21 100644
--- a/.github/workflows/regression_template.yml
+++ b/.github/workflows/regression_template.yml
@@ -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