Skip to content

Commit ac5308d

Browse files
committed
Fix locale install
1 parent 377842d commit ac5308d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/pr_checker_build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,16 @@ jobs:
2929
if: ${{ github.repository_owner == 'geotribu' }}
3030

3131
steps:
32+
- name: Install French locale
33+
id: locale-fr
34+
shell: bash
35+
run: |
36+
sudo locale-gen fr_FR.UTF-8
37+
sudo update-locale LANG=fr_FR.UTF-8
38+
3239
- name: Get source code
3340
uses: actions/checkout@v3
3441

35-
- name: Install locales
36-
run: sudo dpkg-reconfigure locales
3742

3843
- name: Set up Python
3944
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)