Fix unreal path

This commit is contained in:
Goran Lazarevski 2025-03-19 20:51:31 +01:00
parent 557384a318
commit 7543b2962f

View File

@ -59,17 +59,19 @@ jobs:
- name: Setup Unreal Engine - name: Setup Unreal Engine
run: | run: |
# Check if Unreal Engine is installed # Use the correct path where Unreal Engine is installed
if [ ! -d "/Applications/Unreal Engine.app" ]; then UE_PATH="/Users/Shared/Epic Games/UE_5.5"
if [ ! -d "$UE_PATH" ]; then
echo "Error: Unreal Engine is not installed in the expected location" echo "Error: Unreal Engine is not installed in the expected location"
echo "Please ensure Unreal Engine is installed at /Applications/Unreal Engine.app" echo "Please ensure Unreal Engine is installed at $UE_PATH"
exit 1 exit 1
fi fi
# Set environment variables for Unreal Engine (with proper escaping) # Set environment variable with the correct Engine path
echo "UE_ROOT=/Applications/Unreal\ Engine.app/Contents/MacOS" >> $GITHUB_ENV echo "UE_ROOT=$UE_PATH/Engine" >> $GITHUB_ENV
echo "Using Unreal Engine 5.5.4" echo "Using Unreal Engine 5.5"
- name: Build Unreal Project - name: Build Unreal Project
run: | run: |
# Debug information # Debug information
@ -77,26 +79,27 @@ jobs:
echo "macOS Version:" echo "macOS Version:"
sw_vers sw_vers
echo "=== Unreal Engine Information ===" echo "=== Unreal Engine Information ==="
ls -la "/Applications/Unreal Engine.app/Contents/MacOS" ls -la "$UE_ROOT/Build/BatchFiles"
echo "=== Project Information ===" echo "=== Project Information ==="
# Source the environment
source "$GITHUB_ENV" source "$GITHUB_ENV"
# Find your .uproject file (adjust path as needed)
UPROJECT_PATH=$(find . -name "*.uproject" -type f | head -1) UPROJECT_PATH=$(find . -name "*.uproject" -type f | head -1)
if [ -z "$UPROJECT_PATH" ]; then
echo "Error: Could not find .uproject file"
exit 1
fi
echo "Building project: $UPROJECT_PATH" echo "Building project: $UPROJECT_PATH"
# Verify UE_ROOT is correctly set
echo "Using Unreal Engine at: $UE_ROOT" echo "Using Unreal Engine at: $UE_ROOT"
if [ ! -f "$UE_ROOT/Engine/Build/BatchFiles/RunUAT.sh" ]; then if [ ! -f "$UE_ROOT/Build/BatchFiles/RunUAT.sh" ]; then
echo "Error: RunUAT.sh not found at $UE_ROOT/Engine/Build/BatchFiles/RunUAT.sh" echo "Error: RunUAT.sh not found at $UE_ROOT/Build/BatchFiles/RunUAT.sh"
echo "Please check UE_ROOT path" echo "Please check UE_ROOT path"
exit 1 exit 1
fi fi
# Use Unreal Automation Tool to build the project chmod +x "$UE_ROOT/Build/BatchFiles/RunUAT.sh"
"$UE_ROOT/Engine/Build/BatchFiles/RunUAT.sh" BuildCookRun \ "$UE_ROOT/Build/BatchFiles/RunUAT.sh" BuildCookRun \
-project="$UPROJECT_PATH" \ -project="$UPROJECT_PATH" \
-noP4 \ -noP4 \
-platform=Mac \ -platform=Mac \