We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentaef746c commit09ffeffCopy full SHA for 09ffeff
scripts/upload-catalog.sh
@@ -3,7 +3,7 @@ set -eux
3
4
# clone an additional repository
5
cd${GITHUB_WORKSPACE}
6
-git clone --branch${env.CATALOG_BRANCH} https://github.com/python-doc-ja/cpython-doc-catalog.git cpython-doc-catalog
+git clone --branch${CATALOG_BRANCH} https://github.com/python-doc-ja/cpython-doc-catalog.git cpython-doc-catalog
7
mkdir -p${GITHUB_WORKSPACE}/cpython-doc-catalog/Doc/locales/ja
8
cd${GITHUB_WORKSPACE}/cpython-doc-catalog/Doc/locales/ja
9
ln -s${GITHUB_WORKSPACE}/python-docs-ja LC_MESSAGES
@@ -25,6 +25,6 @@ if [[ $(git status --short | wc -l) == 0 ]]; then
25
else
26
echo"I have .po file(s) to upload"
27
git commit --message="[skip ci] Update .po files"
28
- git push --quiet"git@python-docs-ja.github.com:python/python-docs-ja.git"${env.DOCS_BRANCH}:${env.DOCS_BRANCH}
+ git push --quiet"git@python-docs-ja.github.com:python/python-docs-ja.git"${DOCS_BRANCH}:${DOCS_BRANCH}
29
fi
30
rm -rf${GITHUB_WORKSPACE}/cpython-doc-catalog/Doc/locales/ja