7373 python babel_runner.py extract
7474
7575 - name : Generate Transifex configuration file
76- working-directory : python-docs-theme/python-docs-theme /locale
76+ working-directory : python-docs-theme/python_docs_theme /locale/
7777 run : |
7878 sphinx-intl create-txconfig
7979 sphinx-intl update-txconfig-resources --pot-dir . --locale-dir . --transifex-organization-name python-doc --transifex-project-name python-docs-theme
8383 - name : Push source strings to Transifex
8484 if : ${{ github.event_name == 'schedule' ||
8585 (github.event_name == 'workflow_dispatch' && github.event.inputs.push == 'true') }}
86- working-directory : python-docs-theme/python-docs-theme /locale
86+ working-directory : python-docs-theme/python_docs_theme /locale/
8787 id : tx_push
8888 run : |
8989 tx push --source --skip
@@ -93,14 +93,14 @@ jobs:
9393 - name : Pull translations for all languages
9494 if : ${{ github.event_name == 'schedule' ||
9595 (github.event_name == 'workflow_dispatch' && github.event.inputs.pull == 'true') }}
96- working-directory : python-docs-theme/python-docs-theme /locale
96+ working-directory : python-docs-theme/python_docs_theme /locale/
9797 run : |
9898 tx pull --all --translations --force
9999 env :
100100 TX_TOKEN : ${{ secrets.TX_TOKEN }}
101101
102102 - name : Commit changes
103- working-directory : python-docs-theme/python-docs-theme /locale
103+ working-directory : python-docs-theme/python_docs_theme /locale/
104104 run : |
105105 git config user.name github-actions[bot]
106106 git config user.email 41898282+github-actions[bot]@users.noreply.github.com
@@ -112,7 +112,7 @@ jobs:
112112 git diff-index --cached --quiet HEAD || { git commit -vm "Update translations from Transifex"; }
113113
114114 - name : Push changes
115- working-directory : python-docs-theme/python-docs-theme /locale
115+ working-directory : python-docs-theme/python_docs_theme /locale/
116116 if : ${{ contains(fromJSON('["schedule", "workflow_dispatch"]'), github.event_name) }}
117117 run : |
118- git push
118+ git push
0 commit comments