From 5f853369dc131ec8c949e81295547e6fabfefb1a Mon Sep 17 00:00:00 2001 From: dishaprakash <57954147+dishaprakash@users.noreply.github.com> Date: Tue, 31 Mar 2026 00:43:37 +0530 Subject: [PATCH 1/7] Delete .github/workflows/docs_preview_build.yaml --- .github/workflows/docs_preview_build.yaml | 95 ----------------------- 1 file changed, 95 deletions(-) delete mode 100644 .github/workflows/docs_preview_build.yaml diff --git a/.github/workflows/docs_preview_build.yaml b/.github/workflows/docs_preview_build.yaml deleted file mode 100644 index a3805863dfd7..000000000000 --- a/.github/workflows/docs_preview_build.yaml +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 2026 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -name: "Build Docs Preview" - -on: - pull_request: - paths: - - 'docs/**' - - '.github/workflows/docs**' - - '.hugo/**' - -# Read-only token for code execution -permissions: read-all - -jobs: - build-preview: - runs-on: ubuntu-24.04 - env: - PR_NUMBER: ${{ github.event.number }} - HEAD_SHA: ${{ github.event.pull_request.head.sha }} - concurrency: - group: "preview-${{ github.event.number }}" - cancel-in-progress: true - defaults: - run: - working-directory: .hugo - steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - with: - # Checkout the PR's HEAD commit (supports forks). - ref: ${{ env.HEAD_SHA }} - fetch-depth: 0 - - - name: Setup Hugo - uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # v3 - with: - hugo-version: "0.145.0" - extended: true - - - name: Setup Node - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 - with: - node-version: "22" - - - name: Cache dependencies - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - - run: npm ci --ignore-scripts - - run: hugo --minify - env: - HUGO_BASEURL: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/previews/PR-${{ env.PR_NUMBER }}/ - HUGO_ENVIRONMENT: preview - HUGO_RELATIVEURLS: false - - - name: Build Pagefind Search Index - run: npx pagefind --site public - - - name: Prepare Artifact Payload - run: | - mkdir -p ../artifact-payload - cp -r public ../artifact-payload/public - echo $PR_NUMBER > ../artifact-payload/pr_number.txt - - - name: Upload Artifact - uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7 - with: - name: docs-preview-data - path: artifact-payload/ - - - name: Deployment Link - run: | - DEPLOY_URL="https://github.com/${{ github.repository_owner }}/${{ github.event.repository.name }}/actions/workflows/docs_preview_deploy.yaml" - - echo "### Build Complete" >> $GITHUB_STEP_SUMMARY - echo "The build for PR #${{ env.PR_NUMBER }} succeeded." >> $GITHUB_STEP_SUMMARY - echo "The deployment workflow is now starting in the background." >> $GITHUB_STEP_SUMMARY - echo "---" >> $GITHUB_STEP_SUMMARY - echo "#### [Track Deployment Progress]($DEPLOY_URL)" >> $GITHUB_STEP_SUMMARY From 7220d5317da09c34491eefff31449543d1a5913f Mon Sep 17 00:00:00 2001 From: dishaprakash <57954147+dishaprakash@users.noreply.github.com> Date: Tue, 31 Mar 2026 00:44:05 +0530 Subject: [PATCH 2/7] Delete .github/workflows/deploy_dev_docs.yaml --- .github/workflows/deploy_dev_docs.yaml | 88 -------------------------- 1 file changed, 88 deletions(-) delete mode 100644 .github/workflows/deploy_dev_docs.yaml diff --git a/.github/workflows/deploy_dev_docs.yaml b/.github/workflows/deploy_dev_docs.yaml deleted file mode 100644 index ee84e89fe536..000000000000 --- a/.github/workflows/deploy_dev_docs.yaml +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 2025 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -name: "Deploy In-development docs" - -permissions: - contents: write - -on: - push: - branches: - - main - paths: - - 'docs/**' - - 'github/workflows/docs**' - - '.hugo/**' - - # Allow triggering manually. - workflow_dispatch: - -jobs: - deploy: - runs-on: ubuntu-24.04 - defaults: - run: - working-directory: .hugo - # This shared concurrency group ensures only one docs deployment runs at a time. - concurrency: - group: docs-deployment - cancel-in-progress: false - steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - with: - fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - - name: Setup Hugo - uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # v3 - with: - hugo-version: "0.145.0" - extended: true - - - name: Setup Node - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 - with: - node-version: "22" - - - name: Cache dependencies - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - - run: npm ci - - run: hugo --minify - env: - HUGO_BASEURL: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/dev - HUGO_RELATIVEURLS: false - - - name: Build Pagefind Search Index - run: npx pagefind --site public - - - name: Create Staging Directory - run: | - mkdir staging - mv public staging/dev - mv staging/dev/releases.releases staging/releases.releases - - - name: Deploy - uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./.hugo/staging - publish_branch: versioned-gh-pages - keep_files: true - commit_message: "deploy: ${{ github.event.head_commit.message }}" From b74c34f32febd9f7a6e96639665fdc61b13c56d1 Mon Sep 17 00:00:00 2001 From: dishaprakash <57954147+dishaprakash@users.noreply.github.com> Date: Tue, 31 Mar 2026 00:44:17 +0530 Subject: [PATCH 3/7] Delete .github/workflows/deploy_previous_version_docs.yaml --- .../deploy_previous_version_docs.yaml | 114 ------------------ 1 file changed, 114 deletions(-) delete mode 100644 .github/workflows/deploy_previous_version_docs.yaml diff --git a/.github/workflows/deploy_previous_version_docs.yaml b/.github/workflows/deploy_previous_version_docs.yaml deleted file mode 100644 index ad2c0c675831..000000000000 --- a/.github/workflows/deploy_previous_version_docs.yaml +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 2025 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -name: "Deploy Previous Version Docs" - -on: - workflow_dispatch: - inputs: - version_tag: - description: 'The old version tag to build docs for (e.g., v0.15.0)' - required: true - type: string - -jobs: - build_and_deploy: - runs-on: ubuntu-latest - permissions: - contents: write - - steps: - - name: Checkout main branch (for latest templates and theme) - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - with: - ref: 'main' - submodules: 'recursive' - fetch-depth: 0 - - - name: Checkout old content from tag into a temporary directory - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - with: - ref: ${{ github.event.inputs.version_tag }} - path: 'old_version_source' # Checkout into a temp subdir - # Sparse checkout to only get the content directory - sparse-checkout: | - docs - - - name: Replace content with old version - run: | - # Remove the current content directory from the main branch checkout - rm -rf docs/ - # Move the old content directory into place - mv ./old_version_source/docs docs - - - name: Setup Hugo and Node - uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # v3 - with: - hugo-version: "0.145.0" - extended: true - - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 - with: - node-version: "22" - - - name: Install Dependencies - run: npm ci - working-directory: .hugo - - - name: Build Hugo Site for Archived Version - run: hugo --minify - working-directory: .hugo - env: - HUGO_BASEURL: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/${{ github.event.inputs.version_tag }}/ - HUGO_RELATIVEURLS: false - HUGO_PARAMS_VERSION: ${{ github.event.inputs.version_tag }} - - - name: Build Pagefind Index (Archived Version) - run: npx pagefind --site public - working-directory: .hugo - - - name: Deploy to gh-pages - uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: .hugo/public - publish_branch: versioned-gh-pages - destination_dir: ./${{ github.event.inputs.version_tag }} - keep_files: true - allow_empty_commit: true - commit_message: "docs(backport): deploy docs for ${{ github.event.inputs.version_tag }}" - - - name: Clean Build Directory - run: rm -rf .hugo/public - - - name: Build Hugo Site - run: hugo --minify - working-directory: .hugo - env: - HUGO_BASEURL: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/ - HUGO_RELATIVEURLS: false - HUGO_PARAMS_VERSION: ${{ github.event.inputs.version_tag }} - - - name: Build Pagefind Index (Root) - run: npx pagefind --site public - working-directory: .hugo - - - name: Deploy to root - uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: .hugo/public - publish_branch: versioned-gh-pages - keep_files: true - allow_empty_commit: true - commit_message: "deploy: docs to root for ${{ github.event.inputs.version_tag }}" From 2aa43906b1d47ab3b0fad2482d427c73240f4f76 Mon Sep 17 00:00:00 2001 From: dishaprakash <57954147+dishaprakash@users.noreply.github.com> Date: Tue, 31 Mar 2026 00:44:29 +0530 Subject: [PATCH 4/7] Delete .github/workflows/deploy_versioned_docs.yaml --- .github/workflows/deploy_versioned_docs.yaml | 103 ------------------- 1 file changed, 103 deletions(-) delete mode 100644 .github/workflows/deploy_versioned_docs.yaml diff --git a/.github/workflows/deploy_versioned_docs.yaml b/.github/workflows/deploy_versioned_docs.yaml deleted file mode 100644 index dc0ec0274553..000000000000 --- a/.github/workflows/deploy_versioned_docs.yaml +++ /dev/null @@ -1,103 +0,0 @@ -# Copyright 2025 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -name: "Deploy Versioned Docs" - -permissions: - contents: write - -on: - release: - types: [published] - -jobs: - deploy: - runs-on: ubuntu-24.04 - # This shared concurrency group ensures only one docs deployment runs at a time. - concurrency: - group: docs-deployment - cancel-in-progress: false - steps: - - name: Checkout Code at Tag - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - with: - ref: ${{ github.event.release.tag_name }} - - - name: Get Version from Release Tag - id: get_version - env: - RELEASE_TAG: ${{ github.event.release.tag_name }} - run: echo "VERSION=${RELEASE_TAG}" >> "$GITHUB_OUTPUT" - - - name: Setup Hugo - uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # v3 - with: - hugo-version: "0.145.0" - extended: true - - - name: Setup Node - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 - with: - node-version: "22" - - - name: Install Dependencies - run: npm ci - working-directory: .hugo - - - name: Build Hugo Site - run: hugo --minify - working-directory: .hugo - env: - HUGO_BASEURL: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/${{ steps.get_version.outputs.VERSION }}/ - HUGO_RELATIVEURLS: false - HUGO_PARAMS_VERSION: ${{ steps.get_version.outputs.VERSION }} - - - name: Build Pagefind Index (Versioned) - run: npx pagefind --site public - working-directory: .hugo - - - name: Deploy - uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: .hugo/public - publish_branch: versioned-gh-pages - destination_dir: ./${{ steps.get_version.outputs.VERSION }} - keep_files: true - commit_message: "deploy: docs for ${{ steps.get_version.outputs.VERSION }}" - - - name: Clean Build Directory - run: rm -rf .hugo/public - - - name: Build Hugo Site - run: hugo --minify - working-directory: .hugo - env: - HUGO_BASEURL: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/ - HUGO_RELATIVEURLS: false - HUGO_PARAMS_VERSION: ${{ steps.get_version.outputs.VERSION }} - - - name: Build Pagefind Index (Root) - run: npx pagefind --site public - working-directory: .hugo - - - name: Deploy to root - uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: .hugo/public - publish_branch: versioned-gh-pages - keep_files: true - allow_empty_commit: true - commit_message: "deploy: docs to root for ${{ steps.get_version.outputs.VERSION }}" From 93bb2cf88647d02ed9d68be73fe1b95a1fae5d3e Mon Sep 17 00:00:00 2001 From: dishaprakash <57954147+dishaprakash@users.noreply.github.com> Date: Tue, 31 Mar 2026 00:44:43 +0530 Subject: [PATCH 5/7] Delete .github/workflows/docs_preview_clean.yaml --- .github/workflows/docs_preview_clean.yaml | 59 ----------------------- 1 file changed, 59 deletions(-) delete mode 100644 .github/workflows/docs_preview_clean.yaml diff --git a/.github/workflows/docs_preview_clean.yaml b/.github/workflows/docs_preview_clean.yaml deleted file mode 100644 index a3a1f07857a3..000000000000 --- a/.github/workflows/docs_preview_clean.yaml +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 2025 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -name: "docs" - -permissions: - contents: write - pull-requests: write - -# This Workflow depends on 'github.event.number', -# not compatible with branch or manual triggers. -on: - pull_request: - types: - - closed - -jobs: - clean: - if: ${{ !github.event.pull_request.head.repo.fork }} - runs-on: ubuntu-24.04 - concurrency: - # Shared concurrency group wih preview staging. - group: "preview-${{ github.event.number }}" - cancel-in-progress: true - steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - with: - ref: versioned-gh-pages - - - name: Remove Preview - run: | - rm -Rf ./previews/PR-${{ github.event.number }} - git config user.name 'github-actions[bot]' - git config user.email 'github-actions[bot]@users.noreply.github.com' - git add -u previews/PR-${{ github.event.number }} - git commit --message "cleanup: previews/PR-${{ github.event.number }}" - git push - - - name: Comment - uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - with: - script: | - github.rest.issues.createComment({ - issue_number: context.payload.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: "๐Ÿงจ Preview deployments removed." - }) From 93177c8ac13fab3242436c5a9fd9b033ccd0c112 Mon Sep 17 00:00:00 2001 From: dishaprakash <57954147+dishaprakash@users.noreply.github.com> Date: Tue, 31 Mar 2026 00:44:54 +0530 Subject: [PATCH 6/7] Delete .github/workflows/docs_preview_deploy.yaml --- .github/workflows/docs_preview_deploy.yaml | 95 ---------------------- 1 file changed, 95 deletions(-) delete mode 100644 .github/workflows/docs_preview_deploy.yaml diff --git a/.github/workflows/docs_preview_deploy.yaml b/.github/workflows/docs_preview_deploy.yaml deleted file mode 100644 index 7f9d9e6daac7..000000000000 --- a/.github/workflows/docs_preview_deploy.yaml +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 2026 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -name: "Deploy Docs Preview" - -on: - workflow_run: - workflows: ["Build Docs Preview"] - types: - - completed - workflow_dispatch: - inputs: - pr_number: - description: 'PR Number to deploy (Manual override)' - required: true - type: string - build_run_id: - description: 'The Run ID from the successful "Build Docs Preview" workflow' - required: true - type: string - -permissions: - contents: write - pull-requests: write - -jobs: - deploy-preview: - if: > - github.event_name == 'workflow_dispatch' || - (github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success') - runs-on: ubuntu-24.04 - concurrency: - group: "deploy-${{ github.event.inputs.pr_number || github.event.workflow_run.pull_requests[0].number }}" - cancel-in-progress: true - steps: - - name: Checkout base repository - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 - - - name: Download Artifact - uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8 - with: - name: docs-preview-data - github-token: ${{ secrets.GITHUB_TOKEN }} - run-id: ${{ github.event.inputs.build_run_id || github.event.workflow_run.id }} - path: downloaded-artifact - - - name: Read PR Number - id: get_pr - run: | - if [ -n "${{ github.event.inputs.pr_number }}" ]; then - PR_NUMBER="${{ github.event.inputs.pr_number }}" - else - PR_NUMBER=$(cat downloaded-artifact/pr_number.txt) - fi - - if ! [[ "$PR_NUMBER" =~ ^[0-9]+$ ]]; then - echo "Error: PR number [$PR_NUMBER] is invalid." - exit 1 - fi - - echo "pr_number=$PR_NUMBER" >> "$GITHUB_OUTPUT" - - - - name: Deploy - uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: downloaded-artifact/public - publish_branch: versioned-gh-pages - destination_dir: ./previews/PR-${{ steps.get_pr.outputs.pr_number }} - commit_message: "stage: PR-${{ steps.get_pr.outputs.pr_number }} preview" - - - name: Comment - uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - with: - script: | - const prNumber = parseInt('${{ steps.get_pr.outputs.pr_number }}', 10); - - await github.rest.issues.createComment({ - issue_number: prNumber, - owner: context.repo.owner, - repo: context.repo.repo, - body: `๐Ÿ”Ž Preview at https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/previews/PR-${prNumber}/` - }); From e00a35e866e6bf18223173f7f6a041600828905a Mon Sep 17 00:00:00 2001 From: dishaprakash <57954147+dishaprakash@users.noreply.github.com> Date: Tue, 31 Mar 2026 00:48:42 +0530 Subject: [PATCH 7/7] Update DEVELOPER.md --- DEVELOPER.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DEVELOPER.md b/DEVELOPER.md index 64922764c7f4..6b3fa6d45fd8 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -557,7 +557,7 @@ The documentation uses a dynamic versioning system that outputs standard HTML si **Search Indexing:** All deployment workflows automatically execute `npx pagefind --site public` to generate a version-scoped search index specific to that deployment's base URL. -There are 6 GHA workflows we use to achieve document versioning (each deployment scenario has one workflow for GitHub Pages and one for Cloudflare Pages): +There are 3 GHA workflows we use to achieve document versioning: 1. **Deploy In-development docs:** This workflow is run on every commit merged into the main branch. It deploys @@ -567,7 +567,7 @@ There are 6 GHA workflows we use to achieve document versioning (each deployment 1. **Deploy Versioned Docs:** When a new GitHub Release is published, it performs two deployments based on the new release tag. One to the new version subdirectory and one to the root - directory of the versioned-gh-pages branch. + directory of the cloudflare-pages branch. **Note:** Before the release PR from release-please is merged, add the newest version into the hugo.toml file. @@ -578,7 +578,7 @@ There are 6 GHA workflows we use to achieve document versioning (each deployment were released before this new system was in place. This workflow can be started on the UI by providing the git version tag which you want to create the documentation for. The specific versioned subdirectory and the root docs - are updated on the versioned-gh-pages branch. + are updated on the cloudflare-pages branch. #### Contributors