Skip to content
This repository has been archived by the owner on Jan 29, 2025. It is now read-only.

Commit

Permalink
open in editor first
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Platt authored and Marc Platt committed Jan 14, 2025
1 parent 63f7647 commit 6639201
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ jobs:
Write-Host "Checking Godot path: $godotPath"
if (Test-Path $godotPath) {
Write-Host "Godot executable found"
# open editor first
& $godotPath --headless --editor --quit --path "./cusf_launcher/"
# Then initialize cache
python3 .github/scripts/godot_ci_cache.py --godot "$godotPath"
} else {
Write-Host "Godot not found at $godotPath"
Expand All @@ -159,7 +162,10 @@ jobs:
- name: Initialize godot cache (Unix)
if: matrix.build != 'windows'
run: python3 .github/scripts/godot_ci_cache.py
run: |
# open editor first
godot --headless --editor --quit --path "./cusf_launcher/"
python3 .github/scripts/godot_ci_cache.py
- name: Create Windows build dir
if: matrix.build == 'windows'
Expand Down

0 comments on commit 6639201

Please sign in to comment.