Skip to content

Commit

Permalink
Fix workflow to support inf-only drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
idigdoug authored and coolstar committed Jan 28, 2024
1 parent 72800d2 commit 09f0c20
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
- name: Bundle symbols
run: |
Get-ChildItem -Path $env:DRIVER_OUTPUT_DIR -Directory | ForEach-Object {
Copy-Item -Path "$env:DRIVER_OUTPUT_DIR\$($_.Name).pdb" -Destination $_.FullName
if (Test-Path -Path "$env:DRIVER_OUTPUT_DIR\$($_.Name).pdb") {
Copy-Item -Path "$env:DRIVER_OUTPUT_DIR\$($_.Name).pdb" -Destination $_.FullName
}
}
- name: Get version tag
Expand Down

0 comments on commit 09f0c20

Please sign in to comment.