Skip to content

Commit

Permalink
fix: action error
Browse files Browse the repository at this point in the history
  • Loading branch information
0PandaDEV committed Nov 24, 2024
1 parent 89b67f2 commit 999b9ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 999b9ba

Please sign in to comment.