Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ jobs:
deploy:
name: Deploy to GitHub Pages
needs: build
if: github.event_name == 'push'
# Everything except a pull request deploys. Written as a negation rather
# than a list of allowed events, so a trigger added above cannot silently
# build without deploying: `== 'push'` skipped this job on every manual
# run, which is the one case the manual trigger exists for.
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
Expand Down