From 21823c27dae58715909bc54dcc22a1d5deb47aca Mon Sep 17 00:00:00 2001 From: Christopher Moroney Date: Fri, 17 Jul 2026 13:08:30 -0700 Subject: [PATCH] small fix to merge internal config on deploy (only for internal) --- .github/workflows/deploy.yml | 7 ++++++- config.internal.toml | 3 +++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 config.internal.toml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4edfe52dce..ec1b144440 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -68,7 +68,12 @@ jobs: # Builds arm-software-developer repo - name: Build - run: hugo --minify + run: | + if [ "${{ inputs.target }}" = "dev" ]; then + hugo --minify --config config.toml,config.internal.toml + else + hugo --minify + fi env: HUGO_LLM_API: ${{ secrets.HUGO_LLM_API }} HUGO_RAG_API: ${{ secrets.HUGO_RAG_API }} diff --git a/config.internal.toml b/config.internal.toml new file mode 100644 index 0000000000..0cfba883fb --- /dev/null +++ b/config.internal.toml @@ -0,0 +1,3 @@ +[params] +# Validate the refreshed global navigation and footer on internal.learn.arm.com. +global_web_components_url = "https://www.arm.com/arm-global-web-components/devhub/test.js"