[doxygen] Deploy doxygen output to connectedhomeip-doc repo (#7259)

Currently, doxygen HTML files are deployed to "gh-pages"
branch of the main connectedhomeip repo. As a result, it
takes more and more time to checkout the entire repo.

Move the doxygen output to an external repository.
diff --git a/.github/workflows/doxygen.yaml b/.github/workflows/doxygen.yaml
index 13710d3..a8e7136 100644
--- a/.github/workflows/doxygen.yaml
+++ b/.github/workflows/doxygen.yaml
@@ -17,6 +17,7 @@
 on:
     push:
     pull_request:
+    workflow_dispatch:
 
 jobs:
     doxygen:
@@ -38,8 +39,12 @@
               run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})"
               id: extract_branch
             - name: Deploy if master
-              if: steps.extract_branch.outputs.branch == 'master' && github.repository == 'project-chip/connectedhomeip'
+              #if: steps.extract_branch.outputs.branch == 'master' && github.repository == 'project-chip/connectedhomeip'
+              if: github.event_name == 'workflow_dispatch'
               uses: peaceiris/actions-gh-pages@v3
               with:
-                  github_token: ${{ secrets.GITHUB_TOKEN }}
+                  deploy_key: ${{ secrets.DOXYGEN_DEPLOY_KEY }}
+                  external_repository: project-chip/connectedhomeip-doc
                   publish_dir: ./docs/html
+                  # Keep only the latest version of the documentation
+                  force_orphan: true