Problem: missing support for ue 5.4 (fix #351) (#352) #416
Workflow file for this run
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: Development | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- README.md | |
tags: | |
- "v*.*.*" | |
merge_group: | |
pull_request: | |
paths-ignore: | |
- README.md | |
jobs: | |
Unreal_Build_4_27: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup | |
run: | | |
sudo chmod 777 $GITHUB_WORKSPACE | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /opt/ghc | |
sudo rm -rf "/usr/local/share/boost" | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
sudo rm -rf /usr/local/lib/android | |
TARGET=4.27 make | |
python change_version.py 4.27.0 | |
- uses: addnab/docker-run-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.USER }} | |
password: ${{ secrets.PAT }} | |
image: ghcr.io/epicgames/unreal-engine:dev-slim-4.27.2 | |
options: -v ${{ github.workspace }}:/home/ue4/play-unreal-plugin -e HOME=/home/ue4 | |
run: | | |
cd ~/play-unreal-plugin | |
make RunUAT |