We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6eae03 commit 59cf243Copy full SHA for 59cf243
.github/workflows/ci.yml
@@ -206,6 +206,13 @@ jobs:
206
chown -R $uid /home/ue4/UnrealEngine/Engine/Binaries/ThirdParty/Mono/Linux ;
207
chown -R $uid /home/ue4/UnrealEngine/Engine/${{ matrix.unreal == '4.27' && 'Programs/UnrealPak/Saved' || 'Binaries/ThirdParty/DotNet' }} "
208
209
+ - name: Chown Docker container paths (UE5-specific)
210
+ if: ${{ matrix.unreal != '4.27'}}
211
+ run: |
212
+ uid=$(id -u) # the GH action user ID
213
+ docker exec --user root unreal bash -c "
214
+ chown -R $uid /home/ue4/UnrealEngine/Epic/UnrealEngine ;
215
+
216
- name: Setup C++ runtime
217
run: docker exec --user root unreal bash -c '
218
apt-get update ;
0 commit comments