From 999b9bada285336474c8b5b7979b5a7ce185b4a7 Mon Sep 17 00:00:00 2001 From: PandaDEV <70103896+0PandaDEV@users.noreply.github.com> Date: Sun, 24 Nov 2024 16:57:44 +1000 Subject: [PATCH] fix: action error --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 188dda7..ae51ae9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -138,10 +138,10 @@ jobs: run: | $bundlePath = "src-tauri/target/release/bundle/msi" if (Test-Path $bundlePath) { - Write-Output "Contents of $bundlePath:" + Write-Output "Contents of ${bundlePath}:" Get-ChildItem -Path $bundlePath } else { - Write-Output "Path $bundlePath does not exist." + Write-Output "Path ${bundlePath} does not exist." } - name: Rename Windows Artifacts shell: pwsh @@ -156,7 +156,7 @@ jobs: Rename-Item -Path $file.FullName -NewName $newName } } else { - Write-Error "Path $bundlePath does not exist." + Write-Error "Path ${bundlePath} does not exist." exit 1 } - name: Upload artifacts