Skip to content

Commit

Permalink
- Added _GENERATED folder
Browse files Browse the repository at this point in the history
  • Loading branch information
GageM committed Feb 8, 2024
1 parent ea3bcf0 commit 5007814
Show file tree
Hide file tree
Showing 15 changed files with 80 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Unreal Engine Build and Package Workflow

on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]

jobs:
build-and-package:
runs-on: self-hosted
defaults:
run:
shell: pwsh
steps:
- uses: actions/checkout@v2

# Set up environment variables, if necessary
- name: Set up Environment Variables
run: |
echo "UE_ROOT_DIR=D:\Program Files\EpicGames" >> $GITHUB_ENV
echo "PROJECT_DIR=D:\Dor\Projects\unbread" >> $GITHUB_ENV
echo "PROJECT_NAME=unbread" >> $GITHUB_ENV
shell: pwsh

# Build the game using Unreal Automation Tool
- name: Build Game
run: |
run & "$Env:UE_ROOT_DIR\Engine\Build\BatchFiles\RunUAT.bat" BuildCookRun -project="$Env:PROJECT_DIR\$Env:PROJECT_NAME.uproject" -noP4 -platform=Win64 -clientconfig=Development -cook -build -stage -archive -archivedirectory="$Env:PROJECT_DIR\ArchivedBuilds"
shell: pwsh

# Add additional steps for testing, if necessary

# Example: Packaging the game
- name: Package Game
run: |
& "$Env:UE_ROOT_DIR\Engine\Build\BatchFiles\RunUAT.bat" BuildCookRun -project="$Env:PROJECT_DIR\$Env:PROJECT_NAME.uproject" -noP4 -platform=Win64 -clientconfig=Shipping -cook -stage -package -archive -archivedirectory="$Env:PROJECT_DIR\PackagedBuilds"
shell: pwsh
3 changes: 3 additions & 0 deletions Content/Unbread/Maps/LevelTest1.umap
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Unbread/Maps/LevelTest2.umap
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Unbread/Maps/ObjectiveMaterial.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Unbread/Maps/ObjectiveMaterial2.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Unbread/Maps/_GENERATED/alanm/Arrow_CEA0D42F.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Unbread/Maps/_GENERATED/alanm/Box_2D994A11.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Unbread/Maps/_GENERATED/alanm/Box_C6F32EA3.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Unbread/Maps/_GENERATED/alanm/Cone_8AA1EC58.uasset
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Unbread/Maps/_GENERATED/alanm/Extrude_9661BC65.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Unbread/Maps/_GENERATED/alanm/Sphere_999AA8A2.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Unbread/Maps/_GENERATED/alanm/Torus_E62F2336.uasset
Git LFS file not shown

0 comments on commit 5007814

Please sign in to comment.