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: 6 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ jobs:
deploy:
name: deploy versioned documentation
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
# The workflow-level group keys on `github.ref`, so a release tag push and the `main` push that accompanies it
# land in different groups and run at the same time. Both then claim the single `github-pages` environment and
# one of them fails. Serialize just the deploy job across every ref so the builds still run in parallel.
concurrency:
group: pages
cancel-in-progress: false
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand Down