From fbbbce6cdea067d91af0f34fb21c0752b3f73f3f Mon Sep 17 00:00:00 2001 From: Anton Veselev Date: Thu, 21 Dec 2023 20:31:59 +0000 Subject: [PATCH] test --- .github/workflows/gh-pages.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index d604aadc..8ab0303c 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -3,6 +3,7 @@ name: Deploy GitHub pages env: NODE_VERSION: 20 GH_PAGES_DIR: gh-pages-dist + CI: false on: push: @@ -15,7 +16,9 @@ jobs: contents: read pages: write id-token: write - actions: read + actions: write + checks: write + deployments: write environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} @@ -42,3 +45,5 @@ jobs: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}