1 parent 8123c18 commit a059207Copy full SHA for a059207
1 file changed
.github/workflows/transifex-pull.yml
@@ -33,6 +33,14 @@ jobs:
33
fetch-depth: 0
34
- run: curl -O https://raw.githubusercontent.com/python-docs-translations/transifex-automations/master/sample-workflows/transifex-util.py
35
- run: chmod +x transifex-util.py
36
+ - run: |
37
+ python - <<'PY'
38
+ from pathlib import Path
39
+
40
+ path = Path('transifex-util.py')
41
+ text = path.read_text()
42
+ path.write_text(text.replace('make -C cpython/Doc/ gettext', 'make -C cpython/Doc/ build BUILDER=gettext'))
43
+ PY
44
- run: ./transifex-util.py recreate_tx_config --language ru --project-slug python-newest --version ${{ matrix.version }}
45
env:
46
TX_TOKEN: ${{ secrets.TX_TOKEN }}
0 commit comments