From 842f67cb0855d8a5c61610538fd0b8549f7d61cd Mon Sep 17 00:00:00 2001 From: kdivya153 <121901963+kdivya153@users.noreply.github.com> Date: Thu, 17 Oct 2024 11:40:39 -0400 Subject: [PATCH] fix: Re-added "unzipArtifact" to PR Workflow (#337) Update utils.sh --- .github/workflows/utils.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/utils.sh b/.github/workflows/utils.sh index 6633ddcac..17d3f087d 100755 --- a/.github/workflows/utils.sh +++ b/.github/workflows/utils.sh @@ -252,6 +252,7 @@ case "$1" in runTests) runTests ;; getResults) getResults ;; getArtifactData) getArtifactData ;; + unzipArtifact) unzipArtifact ;; generate_cpp_core_sdk_source_code) generate_cpp_sdk_source_code "core" ;; generate_cpp_manage_sdk_source_code) generate_cpp_sdk_source_code "manage" ;; generate_cpp_discovery_sdk_source_code) generate_cpp_sdk_source_code "discovery" ;; @@ -263,4 +264,4 @@ case "$1" in echo "Invalid function specified." exit 1 ;; -esac \ No newline at end of file +esac