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 ee1e69c commit 9dde3ec
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run: |
Start-Process -FilePath "install/haxe-4.3.6-win64.exe" -ArgumentList "/S" -Wait # Silent install
-name: Check Haxe Installation
- name: Check Haxe Installation
shell: powershell
run: |
if (!(Test-Path -Path "C:\HaxeToolkit\haxe\")) {
Expand All @@ -25,6 +25,7 @@ jobs:
} else {
Write-Host "Haxe installation directory found."
}
- name: Add Haxe to PATH
uses: actions/setup-python@v4
with:
Expand All @@ -35,7 +36,7 @@ jobs:
- name: Run Haxe build
shell: powershell
run: |
$env:PATH = "C:\HaxeToolkit\haxe\;$env:PATH" # 添加 Haxe 和 haxelib 路径到 PATH
$env:PATH = "C:\HaxeToolkit\haxe\;$env:PATH" # 添加 Haxe 路径到 PATH
haxe build.hxml
- name: Install CMake
Expand Down

0 comments on commit 9dde3ec

Please sign in to comment.