From 5cb1a108a382799c7ca9a9364cc6aa168ce86683 Mon Sep 17 00:00:00 2001 From: "luandro (aider)" Date: Fri, 6 Sep 2024 11:49:58 -0300 Subject: [PATCH] fix: Update workflows to use PAT instead of github.token --- .github/actions/build-and-deploy/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build-and-deploy/action.yml b/.github/actions/build-and-deploy/action.yml index a329c57..d5d92b5 100644 --- a/.github/actions/build-and-deploy/action.yml +++ b/.github/actions/build-and-deploy/action.yml @@ -47,6 +47,6 @@ runs: - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v4 with: - github_token: ${{ github.token }} + personal_token: ${{ secrets.GH_PAT }} publish_dir: ./dist publish_branch: gh-pages