From 9ddd6fe0268f145efe89dca9d861098bd690464f Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Fri, 5 Sep 2025 22:54:48 -0400 Subject: [PATCH] [Dev] Fix GH pages workflow to push docs correctly (#6493) --- .github/workflows/github-pages.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 95b73782f8e..51a6b71bbe3 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -71,7 +71,8 @@ jobs: run: pnpm typedoc - name: Commit & Push docs - if: ${{!env.DRY_RUN}} + # env vars are stored as strings instead of booleans (hence why an explicit check is required) + if: ${{ env.DRY_RUN == 'false'}} run: | cd pokerogue_gh git config user.email "github-actions[bot]@users.noreply.github.com"