Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragas committed May 1, 2024
1 parent 11730f1 commit be4af07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ jobs:
run: |
dotnet tool install -g dotnet-script;
Get-ChildItem "src/" -Filter *.exe |
Foreach-Object {
dotnet script build/gpu.csx -- --enable-gpu "$_.FullName"
$fileNames = Get-ChildItem -Path "src/" -Recurse -Include *.exe;
foreach ($f in $files){
dotnet script build/gpu.csx -- --enable-gpu $f.FullName
}
shell: pwsh

Expand Down

0 comments on commit be4af07

Please sign in to comment.