From ad9065ff2c5d87ee3b06638c6ae4c8716de3b85e Mon Sep 17 00:00:00 2001 From: Joshua Feingold Date: Mon, 30 Dec 2024 14:10:17 -0600 Subject: [PATCH] @W-17291574@ Fixed regex that broke smoke tests --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4c00e3153..f18485e84 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -115,7 +115,7 @@ jobs: shell: bash run: | # We need to determine the Tarball's name first. - TARBALL_NAME=$(ls ~/downloads/tarball | grep salesforce-plugin-code-analyzer-5\\.0\\.0-alpha\\.[0-9]*\\.tgz) + TARBALL_NAME=$(ls ~/downloads/tarball | grep salesforce-plugin-code-analyzer-5\\.0\\.0-beta\\.[0-9]*\\.tgz) # We need to determine the Tarball's location in an installable way. # Get the path to the download folder. Swap out backslashes for forward slashes to ensure Windows compatibility. RAW_TARBALL_PATH=`echo '${{ steps.download.outputs.download-path }}' | tr '\\' '/'`