Windows executable name typo

This commit is contained in:
Brandon Corfman
2025-11-01 10:19:52 -04:00
parent 2588aa3a9d
commit 7441c48f69

View File

@@ -67,7 +67,7 @@ jobs:
if: matrix.os == 'windows-latest'
run: |
Write-Host "Searching for built Windows binary..."
Get-ChildItem -Recurse -File -Filter 'lasergates*.exe' | Select-Object -First 1 | ForEach-Object {
Get-ChildItem -Recurse -File -Filter 'GameOfLife*.exe' | Select-Object -First 1 | ForEach-Object {
Write-Host ("Found: " + $_.FullName)
New-Item -ItemType Directory -Force -Path build_output | Out-Null
Copy-Item $_.FullName "build_output\GameOfLife.exe"