From 9094f0fa9a6b966498fdde4d138dbee6838d9264 Mon Sep 17 00:00:00 2001 From: Spencer Bliven Date: Mon, 9 Oct 2023 16:32:19 +0200 Subject: [PATCH] Fix condition to deploy pages --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c9cc486..915c8d9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: - name: Deploy uses: peaceiris/actions-gh-pages@v3 - if: github.ref == 'refs/heads/main' && $${{ !env.ACT }} + if: $${{ github.ref == 'refs/heads/main' && !env.ACT }} with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./dist