-
-
Notifications
You must be signed in to change notification settings - Fork 42
35 lines (28 loc) · 931 Bytes
/
ue-docker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: ue-docker
on: push
jobs:
build:
runs-on: windows-latest-4-cores
steps:
- name: Print disk space 1
run: |
Get-PSDrive
- name: Clean up disk space
run: |
docker system prune -a -f
rmdir /s /q "C:\Users\runneradmin\AppData\Local\Android\Sdk"
- name: Print disk space 2
run: |
Get-PSDrive
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12.8'
architecture: 'x64'
- name: Install unreal-docker
run: |
pip install ue4-docker
- name: Build Unreal Engine Docker image
run: |
ue4-docker setup
ue4-docker build -basetag ltsc2022 --visual-studio 2022 --target minimal --exclude debug --exclude templates -isolation=process -username=${{ secrets.DOCKER_USERNAME }} -password=${{ secrets.DOCKER_TOKEN }} 5.3.2