From 4dfcb5e68275dbc00f6afc7b4df3f83603ac8568 Mon Sep 17 00:00:00 2001 From: Nico Flaig Date: Thu, 11 Sep 2025 14:13:07 +0100 Subject: [PATCH] chore: fix publish workflow --- .github/workflows/publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 72ee06a..1ea2440 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ jobs: - run: yarn build - name: Deploy uses: peaceiris/actions-gh-pages@v3 - env: - PERSONAL_TOKEN: ${{ secrets.GH_PAGES_TOKEN }} - PUBLISH_BRANCH: gh-pages - PUBLISH_DIR: ./dist + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_branch: gh-pages + publish_dir: ./dist