We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0381e0 commit ddb5afaCopy full SHA for ddb5afa
.github/workflows/build.yml
@@ -72,12 +72,14 @@ jobs:
72
rm -rf locales/.doctrees
73
74
- name: TODO - commit locales into repository
75
+ shell: bash
76
run: |
77
git config --global --add safe.directory $(pwd)
78
git config --global user.name "GitHub Action"
79
git config --global user.email "[email protected]"
- git commit -m "Automated locales generation" locales
80
- git push
+ if (git commit -m "Automated locales generation" locales); then
81
+ git push
82
+ fi
83
84
- name: put original locales back
85
0 commit comments