From dc196d49fa6094ec50052047eca8541c366c47a2 Mon Sep 17 00:00:00 2001 From: Ryan Cohen Date: Wed, 26 Mar 2025 12:36:23 +0900 Subject: [PATCH] build: fix deploy docs action (#4076) [skip ci] --- .github/workflows/deploy_docs.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index 0d1073ba..65eb60a1 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -17,9 +17,10 @@ jobs: with: output: swagger-ui spec-file: overseerr-api.yml + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: swagger-ui cname: api-docs.overseerr.dev