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
7 changes: 4 additions & 3 deletions .github/workflows/website-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ on:
branches: [main]
workflow_dispatch:

# Serialize deploys so two pushes don't race on the gh-pages branch.
# Cancel in-progress runs on the same branch so we only publish the latest commit.
# The called workflow handles serializing the actual gh-pages git push.
concurrency:
group: gh-pages
cancel-in-progress: false
group: website-publish-${{ github.ref }}
cancel-in-progress: true

jobs:
publish:
Expand Down
Loading