Switch to VS 2019 for older UE #18
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: ue-docker | |
on: push | |
jobs: | |
build: | |
runs-on: windows-latest-4-cores | |
steps: | |
- name: Print disk space | |
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 ltsc2019 --visual-studio 2019 --target minimal --exclude debug --exclude templates -isolation=process -username=${{ secrets.DOCKER_USERNAME }} -password=${{ secrets.DOCKER_TOKEN }} 4.27.2 |