From 35175328bb8ec004dc300a3366fa2df859a81a87 Mon Sep 17 00:00:00 2001 From: ajaysi Date: Wed, 24 Sep 2025 17:45:05 +0530 Subject: [PATCH] fix: GitHub Pages workflow configuration --- .github/workflows/docs.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e7aca0e9..d905fd12 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -12,6 +12,7 @@ permissions: contents: read pages: write id-token: write + actions: read concurrency: group: "pages" @@ -38,6 +39,8 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v4 + with: + enablement: true - name: Build documentation run: | @@ -60,3 +63,5 @@ jobs: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 + with: + token: ${{ secrets.GITHUB_TOKEN }}