diff --git a/.github/workflows/prod-build.yml b/.github/workflows/prod-build.yml index 4d34f04fff6b..c640363c637a 100644 --- a/.github/workflows/prod-build.yml +++ b/.github/workflows/prod-build.yml @@ -314,9 +314,9 @@ jobs: yarn render:html # Generate whatsdeployed files. - yarn tool whatsdeployed --output client/build/_whatsdeployed/code.json - yarn tool whatsdeployed $CONTENT_ROOT --output client/build/_whatsdeployed/content.json - yarn tool whatsdeployed $CONTENT_TRANSLATED_ROOT --output client/build/_whatsdeployed/translated-content.json + yarn tool:legacy whatsdeployed --output client/build/_whatsdeployed/code.json + yarn tool:legacy whatsdeployed $CONTENT_ROOT --output client/build/_whatsdeployed/content.json + yarn tool:legacy whatsdeployed $CONTENT_TRANSLATED_ROOT --output client/build/_whatsdeployed/translated-content.json # Sort DE search index by en-US popularity. node scripts/reorder-search-index.mjs client/build/en-us/search-index.json client/build/de/search-index.json diff --git a/.github/workflows/stage-build.yml b/.github/workflows/stage-build.yml index c07b53898800..1095b9a7dab9 100644 --- a/.github/workflows/stage-build.yml +++ b/.github/workflows/stage-build.yml @@ -324,9 +324,9 @@ jobs: yarn render:html # Generate whatsdeployed files. - yarn tool whatsdeployed --output client/build/_whatsdeployed/code.json - yarn tool whatsdeployed $CONTENT_ROOT --output client/build/_whatsdeployed/content.json - yarn tool whatsdeployed $CONTENT_TRANSLATED_ROOT --output client/build/_whatsdeployed/translated-content.json + yarn tool:legacy whatsdeployed --output client/build/_whatsdeployed/code.json + yarn tool:legacy whatsdeployed $CONTENT_ROOT --output client/build/_whatsdeployed/content.json + yarn tool:legacy whatsdeployed $CONTENT_TRANSLATED_ROOT --output client/build/_whatsdeployed/translated-content.json # Sort DE search index by en-US popularity. node scripts/reorder-search-index.mjs client/build/en-us/search-index.json client/build/de/search-index.json diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 6669fd5b458a..7398185c4986 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -215,9 +215,9 @@ jobs: yarn render:html # Generate whatsdeployed files. - yarn tool whatsdeployed --output client/build/_whatsdeployed/code.json - yarn tool whatsdeployed $CONTENT_ROOT --output client/build/_whatsdeployed/content.json - yarn tool whatsdeployed $CONTENT_TRANSLATED_ROOT --output client/build/_whatsdeployed/translated-content.json + yarn tool:legacy whatsdeployed --output client/build/_whatsdeployed/code.json + yarn tool:legacy whatsdeployed $CONTENT_ROOT --output client/build/_whatsdeployed/content.json + yarn tool:legacy whatsdeployed $CONTENT_TRANSLATED_ROOT --output client/build/_whatsdeployed/translated-content.json # Sort DE search index by en-US popularity. node scripts/reorder-search-index.mjs client/build/en-us/search-index.json client/build/de/search-index.json