From 62350a36f0bf917f57202b57ba19995e4840dd33 Mon Sep 17 00:00:00 2001 From: "Chen, Zhentao" Date: Mon, 26 Feb 2024 13:39:59 +0800 Subject: [PATCH] fix if in update html --- .github/workflows/llm-harness-evaluation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/llm-harness-evaluation.yml b/.github/workflows/llm-harness-evaluation.yml index 0bcc8af4..14180239 100644 --- a/.github/workflows/llm-harness-evaluation.yml +++ b/.github/workflows/llm-harness-evaluation.yml @@ -287,6 +287,6 @@ jobs: shell: bash run: | python harness_csv_to_html.py -f $ACC_FOLDER - if github.event_name == 'schedule'; then + if ${{github.event_name == 'schedule'}}; then python update_html_in_parent_folder.py -f $ACC_FOLDER fi \ No newline at end of file