Delete .github/workflows/unreal-engine-ci.yml #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |