File tree Expand file tree Collapse file tree 1 file changed +24
-8
lines changed Expand file tree Collapse file tree 1 file changed +24
-8
lines changed Original file line number Diff line number Diff line change 13
13
14
14
jobs :
15
15
build :
16
- runs-on : self-hosted
16
+ # runs-on: self-hosted
17
+ runs-on : ubuntu-latest
18
+ container :
19
+ image : ghcr.io/epicgames/unreal-engine:dev-5.4
20
+
17
21
steps :
18
22
- name : Check out UE5.4 project
19
23
uses : actions/checkout@v3
20
24
with :
21
25
repository : Ciberusps/UE_5_4_Blueprint
22
26
path : UE_5_4_Blueprint
23
27
24
- - name : Check out UnrealHelperLibrary to Plugins folder
25
- uses : actions/checkout@v3
26
- with :
27
- path : UE_5_4_Blueprint/Plugins/UnrealHelperLibrary
28
-
28
+ - name : Check out UE5.4 project
29
+ run : ls
30
+ # - name: Check out UnrealHelperLibrary to Plugins folder
31
+ # uses: actions/checkout@v3
32
+ # with:
33
+ # # path: UE_5_4_Blueprint/Plugins/UnrealHelperLibrary
34
+ # path: UnrealHelperLibrary
35
+
36
+ # - name: Build Plugins (UHL)
37
+ # shell: powershell
38
+ # run: |
39
+ # mkdir "Temp"
40
+ # $pluginPath = Resolve-Path -Path "UE_5_4_Blueprint/Plugins/UnrealHelperLibrary/UnrealHelperLibrary.uplugin"
41
+ # $tempDirAbsolutePath = Resolve-Path -Path "Temp"
42
+ # "S:/Epic Games/UE_5.4/Engine/Build/BatchFiles/RunUAT.bat BuildPlugin -plugin="$pluginPath" -package="$tempDirAbsolutePath""
43
+
29
44
- name : Build project
30
45
uses : OrchidIsle/UE5-Build-Project@latest
31
46
with :
32
- RUNUAT_PATH : ' S:/Epic Games/UE_5.4/Engine/Build/BatchFiles/RunUAT.bat'
47
+ # RUNUAT_PATH: 'S:/Epic Games/UE_5.4/Engine/Build/BatchFiles/RunUAT.bat'
48
+ RUNUAT_PATH : ' C:/Epic Games/UE5.4/Engine/Build/BatchFiles/RunUAT.bat'
33
49
UPROJECT_PATH : ${{ github.workspace }}/UE_5_4_Blueprint/UE_5_4_Blueprint.uproject
34
50
BUILD_CONFIG : Development
35
51
PLATFORM : Win64
36
52
CLEAN : true
37
53
COOK : true
38
54
STAGE : true
39
55
PACKAGE : true
40
- PAK : false
56
+ PAK : true
41
57
SERVER : false
42
58
ARCHIVE : false
43
59
ARCHIVE_PATH : ' C:/Archives/MyGame'
You can’t perform that action at this time.
0 commit comments