Skip to content

Commit 768cd50

Browse files
authored
Merge pull request #13931 from rtibbles/i18n
Install dependencies for message upload and download actions
2 parents eae0a4e + 9235e4f commit 768cd50

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/i18n-download.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
1818
with:
1919
python-version: '3.9'
2020
cache: 'pip'
21-
cache-dependency-path: 'build_tools/i18n/*.py'
21+
cache-dependency-path: |
22+
'build_tools/i18n/*.py'
23+
requirements/base.txt
2224
2325
- name: Set up Node.js
2426
uses: actions/setup-node@v6
@@ -29,6 +31,9 @@ jobs:
2931
- name: Install gettext
3032
run: sudo apt-get update && sudo apt-get install -y gettext
3133

34+
- name: Install Python dependencies
35+
run: pip install -r requirements/base.txt
36+
3237
- name: Install JavaScript dependencies
3338
run: yarn --frozen-lockfile
3439

.github/workflows/i18n-upload.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
python-version: '3.9'
1818
cache: 'pip'
19-
cache-dependency-path: 'build_tools/i18n/*.py'
19+
cache-dependency-path: 'requirements/base.txt'
2020

2121
- name: Set up Node.js
2222
uses: actions/setup-node@v6
@@ -27,6 +27,9 @@ jobs:
2727
- name: Install gettext
2828
run: sudo apt-get update && sudo apt-get install -y gettext
2929

30+
- name: Install Python dependencies
31+
run: pip install -r requirements/base.txt
32+
3033
- name: Install JavaScript dependencies
3134
run: yarn --frozen-lockfile
3235

0 commit comments

Comments
 (0)