From d43e839d50f79b335de578b00a7c9ca3d51ea51e Mon Sep 17 00:00:00 2001 From: MatDagommer Date: Mon, 29 Dec 2025 17:22:23 +0100 Subject: [PATCH] =?UTF-8?q?ci(docs)=F0=9F=94=84:=20update=20deployment=20w?= =?UTF-8?q?orkflow=20to=20use=20GITHUB=5FTOKEN=20instead=20of=20personal?= =?UTF-8?q?=20token?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Replaces the use of GHPAGES_DEPLOY_KEY with GITHUB_TOKEN for GitHub Pages deployment in the docs workflow. - Aligns with GitHub Actions best practices for authentication. --- .github/workflows/docs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 7bb64cb..8e6a0d0 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -66,7 +66,7 @@ jobs: # Since ./site only contains HTML files (generated from markdown by MkDocs), # no markdown files will be deployed. The markdown files exist only during # the build process and are never committed to any branch. - personal_token: ${{ secrets.GHPAGES_DEPLOY_KEY }} + github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./site publish_branch: gh-pages allow_empty_commit: false