We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9728440 commit 201be47Copy full SHA for 201be47
1 file changed
.github/workflows/release.yml
@@ -37,7 +37,10 @@ jobs:
37
run: |
38
$version = "${{ steps.get_version.outputs.version }}"
39
$zipName = "AddToPath-v${version}-win-x64.zip"
40
- Compress-Archive -Path "AddToPath\bin\Release\net472\*" -DestinationPath $zipName -Force
+ # First check if files exist
41
+ Get-ChildItem -Path "bin/Release/net472" -ErrorAction Continue
42
+ # Create ZIP with proper path
43
+ Compress-Archive -Path "bin/Release/net472/*" -DestinationPath $zipName -Force
44
45
- name: Generate Release Notes
46
id: release_notes
0 commit comments