Skip to content

Commit

Permalink
8
Browse files Browse the repository at this point in the history
  • Loading branch information
sonygod committed Oct 9, 2024
1 parent 380adfe commit ee1e69c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ jobs:
run: |
Start-Process -FilePath "install/haxe-4.3.6-win64.exe" -ArgumentList "/S" -Wait # Silent install
-name: Check Haxe Installation
shell: powershell
run: |
if (!(Test-Path -Path "C:\HaxeToolkit\haxe\")) {
Write-Error "Haxe installation directory not found!"
exit 1
} else {
Write-Host "Haxe installation directory found."
}
- name: Add Haxe to PATH
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit ee1e69c

Please sign in to comment.