Skip to content

Commit

Permalink
ci: fix pip installation in i18n (#5389)
Browse files Browse the repository at this point in the history
ci: fix pip in i18n
  • Loading branch information
scarf005 authored Sep 20, 2024
1 parent c0fc5ad commit 861e127
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/i18n-extraction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install gettext python3-pip
sudo pip3 install polib luaparser
sudo pip3 install --break-system-packages polib luaparser
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/i18n-printf-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install python3-pip
sudo pip3 install polib
sudo pip3 install --break-system-packages polib
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-translation-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: "Install Python3"
run: |
sudo apt install python3-pip
sudo pip3 install polib luaparser
sudo pip3 install --break-system-packages polib luaparser
- name: "Checkout"
uses: actions/checkout@v4
- name: "Generate translation template"
Expand Down

0 comments on commit 861e127

Please sign in to comment.