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 be4af07 commit e28c295
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ jobs:
dotnet tool install -g dotnet-script;
$fileNames = Get-ChildItem -Path "src/" -Recurse -Include *.exe;
foreach ($f in $files){
dotnet script build/gpu.csx -- --enable-gpu $f.FullName
foreach ($f in $fileNames) {
dotnet script build/gpu.csx -- --enable-gpu $f.FullName;
}
shell: pwsh

Expand Down

0 comments on commit e28c295

Please sign in to comment.