From 75b1a3029395310423085325340bde6d2ea3d979 Mon Sep 17 00:00:00 2001 From: Ocraftyone Date: Tue, 19 Dec 2023 03:07:30 -0500 Subject: [PATCH] fix pwsh variable in CICD (#3188) --- .github/workflows/build_orca.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_orca.yml b/.github/workflows/build_orca.yml index ea42733961..3091966e97 100644 --- a/.github/workflows/build_orca.yml +++ b/.github/workflows/build_orca.yml @@ -58,7 +58,7 @@ jobs: if ($versionContent -match 'set\(SoftFever_VERSION "(.*?)"\)') { $ver = $matches[1] } - ver = "V$ver" + $ver = "V$ver" } echo "ver=$ver" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8 @@ -215,4 +215,4 @@ jobs: uses: actions/upload-artifact@v3 with: name: OrcaSlicer_Linux_${{ env.ver }} - path: './build/OrcaSlicer_ubu64.AppImage' \ No newline at end of file + path: './build/OrcaSlicer_ubu64.AppImage'