Skip to content

Update main.yml

Update main.yml #3

Workflow file for this run

name: UE5 Build and Test Workflow
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
jobs:
build-and-test:
runs-on: self-hosted # Ensure this label matches your self-hosted runner's label
strategy:
matrix:
configuration: [Debug, Release] # Define configurations if needed
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetches the entire history for all branches and tags
- name: Build and Cook Unreal Engine project
run: call "D:\Program Files\Epic Games\UE_5.3\Engine\Build\BatchFiles\RunUAT.bat" BuildCookRun -project="D:\Dor\Projects\unbread\unbread.uproject" -noP4 -platform=Win64 -clientconfig=Release -cook -build -stage -archive -archivedirectory=".\Output"