mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-21 13:14:04 +02:00
fix: action error
This commit is contained in:
parent
89b67f24f2
commit
999b9bada2
1 changed files with 3 additions and 3 deletions
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue