Skip to content

Commit

Permalink
Export language environment variables properly
Browse files Browse the repository at this point in the history
No longer doing it in multiple steps, so adding it to GITHUB_ENV won't really do anything, if it even works in the docker container right now which it probably doesn't.
  • Loading branch information
SonicGDX committed Nov 27, 2024
1 parent d559e8a commit 65089f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/docker/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ gnupg

# set Locale to en_US.UTF-8 (avoids hang during compilation)
locale-gen en_US.UTF-8
echo "LANG=en_US.UTF-8" >> $GITHUB_ENV
echo "LANGUAGE=en_US.UTF-8" >> $GITHUB_ENV
echo "LC_ALL=en_US.UTF-8" >> $GITHUB_ENV
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
export LC_ALL=en_US.UTF-8

# add zulu apt repository - https://docs.azul.com/core/install/debian
curl -s https://repos.azul.com/azul-repo.key | gpg --dearmor -o /usr/share/keyrings/azul.gpg
Expand Down

0 comments on commit 65089f7

Please sign in to comment.