File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
src/ue4docker/dockerfiles/ue4-minimal/linux Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,11 @@ COPY --from=builder --chown=ue4:ue4 /home/ue4/UnrealEngine/Components/TemplatesA
82
82
COPY --from=builder --chown=ue4:ue4 /home/ue4/.config/Epic/UnrealEngine/Install.ini /home/ue4/.config/Epic/UnrealEngine/Install.ini
83
83
WORKDIR /home/ue4/UnrealEngine
84
84
85
+ # GitHub Actions forcibly overrides $HOME and redirects it to a host directory that is bind-mounted at `/github/home`,
86
+ # so we need to explicitly set XDG_CONFIG_HOME to ensure this does not bypass our engine config files and break things
87
+ # (see: <https://github.com/actions/runner/issues/863>)
88
+ ENV XDG_CONFIG_HOME=/home/ue4/.config
89
+
85
90
{% if not disable_labels %}
86
91
# Add labels to the built image to identify which components (if any) were excluded from the build that it contains
87
92
LABEL com.adamrehn.ue4-docker.excluded.ddc={% if excluded_components.ddc == true %}1{% else %}0{% endif %}
You can’t perform that action at this time.
0 commit comments