Skip to content

Commit

Permalink
Create build-with-project.yml
Browse files Browse the repository at this point in the history
Ciberusps committed Oct 24, 2024
1 parent 3949c78 commit 8002ad5
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/build-with-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Build with blueprint project

on:
push:
branches:
- "**"

jobs:
build:
runs-on: self-hosted
steps:
- name: Check out Git repository
uses: actions/checkout@v3
with:
repository: Ciberusps/UE_5_4_Blueprint
path: UE_5_4_Blueprint
- name: Build project
uses: OrchidIsle/UE5-Build-Project@latest
with:
RUNUAT_PATH: 'S:/Epic Games/UE_5.4/Engine/Build/BatchFiles/RunUAT.bat'
UPROJECT_PATH: ${{ github.workspace }}/UE_5_4_Blueprint/UE_5_4_Blueprint.uproject
BUILD_CONFIG: Development
PLATFORM: Win64
CLEAN: true
COOK: true
STAGE: true
PACKAGE: false
PAK: false
SERVER: false
ARCHIVE: false
ARCHIVE_PATH: 'C:/Archives/MyGame'
NULLRHI: true
EDITOR: true
ENCRYPT_INI: true
# RELEASE: '1.0.0'
# PATCH: '0.9.0'
# MAPS: 'Map1,Map2'
DELETE_PDB: true
# ANTICHEAT_ENABLED: true
# ANTICHEAT_PRIVATE_KEY: 'base64encodedprivatekey'
# ANTICHEAT_PUBLIC_CERT: 'base64encodedpubliccert'

0 comments on commit 8002ad5

Please sign in to comment.