Skip to content

Commit

Permalink
Fix logic for conditional deploy step
Browse files Browse the repository at this point in the history
  • Loading branch information
sgibson91 committed Nov 16, 2023
1 parent cb5c3a3 commit d9fc998
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_handbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit d9fc998

Please sign in to comment.