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.
2 parents 814323c + 3d716d4 commit 538003cCopy full SHA for 538003c
.github/workflows/release.yml
@@ -385,7 +385,7 @@ jobs:
385
fi
386
387
EXTRA_SPHINX_OPTIONS=""
388
- if ${{ env.IS_LATEST_DEVELOP == 'true' }}; then
+ if [ "${{ env.IS_LATEST_DEVELOP }}" == "true" ]; then
389
EXTRA_SPHINX_OPTIONS="-t current"
390
391
@@ -400,7 +400,7 @@ jobs:
400
cp -r ./data/json/schemas "${BUILD_OUTPUT_DIR}/"
401
402
elif [ "${BUILD_PROCEDURE}" -eq 1 ]; then
403
- make BASE_URL=${BASE_URL} sphinx_options="-A gtm_id=${GTM_ID} ${EXTRA_SPHINX_OPTIONS}" html
+ make BASE_URL=${BASE_URL} sphinx_options="-A gtm_id=${GTM_ID} ${EXTRA_SPHINX_OPTIONS}" html
404
cp -r ./ja/build/html/* "${BUILD_OUTPUT_DIR}/"
405
if [ -d ./en/build/html ]; then
406
mkdir -p "${BUILD_OUTPUT_DIR}/en"
0 commit comments