From d9fc998f8bbd466f672b71d8e5e5b522d90a2559 Mon Sep 17 00:00:00 2001 From: Sarah Gibson Date: Thu, 16 Nov 2023 16:49:58 +0000 Subject: [PATCH] Fix logic for conditional deploy step --- .github/workflows/deploy_handbook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_handbook.yml b/.github/workflows/deploy_handbook.yml index 4db75f7..5e7c0af 100644 --- a/.github/workflows/deploy_handbook.yml +++ b/.github/workflows/deploy_handbook.yml @@ -54,7 +54,7 @@ jobs: - name: GitHub Pages action # Only run this step if the event was a push, or if the deploy input # is true when running manually - if: ${{ github.event_name == 'push' || inputs.deploy == 'true' }} + if: github.event_name == 'push' || inputs.deploy uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }}