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
4 changes: 4 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ concurrency:

jobs:
build:
# Don't deploy from forks (e.g. when syncing main from upstream). The
# GitHub Pages deployment isn't available on forks and the run would fail.
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
Expand Down Expand Up @@ -46,6 +49,7 @@ jobs:

deploy:
needs: build
if: github.event.repository.fork == false
runs-on: ubuntu-latest
environment:
name: github-pages
Expand Down