Skip to content

Commit

Permalink
build: add set locale step to the build action
Browse files Browse the repository at this point in the history
  • Loading branch information
vlmaier committed Jan 4, 2024
1 parent 5cab03c commit a12276d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ jobs:
java-version: '17'
distribution: 'temurin'

- name: Set locale to UTF-8
run: |
sudo locale-gen en_US.UTF-8
sudo update-locale LANG=en_US.UTF-8
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
- name: Build with Gradle
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0
with:
Expand Down

0 comments on commit a12276d

Please sign in to comment.