diff --git a/.github/workflows/smoketest-mssql-inproc-v4.yml b/.github/workflows/smoketest-mssql-inproc-v4.yml index 7a755f96c..2256482d2 100644 --- a/.github/workflows/smoketest-mssql-inproc-v4.yml +++ b/.github/workflows/smoketest-mssql-inproc-v4.yml @@ -25,7 +25,8 @@ jobs: id: random_string shell: pwsh run: | - $random_string = .\../../test/SmokeTests/BackendSmokeTests/generate-random-string.ps1 + $scriptPath = "$(github.workspace)..\..\test\SmokeTests\BackendSmokeTests\generate-random-string.ps1" + $random_string = & $scriptPath echo "::set-env name=SA_PASSWORD::$random_string" - name: Run V4 .NET in-proc w/ MSSQL Smoke Test