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
18 changes: 15 additions & 3 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,26 @@ name: Documentation

on:
push:
branches: [documentation]
branches: [development]
pull_request:
branches: [documentation]
branches: [development]

jobs:
deploy:
uses: ConductionNL/.github/.github/workflows/documentation.yml@main
with:
cname: versioniq.conduction.nl

docs-hosts: app-versions.conduction.nl,versioniq.conduction.nl
# EVERY host this site answers on, in FULL: wrangler reconciles the
# worker's triggers against this list, so a host omitted here is
# REMOVED from the worker and goes dark. Both were attached as custom
# domains on 2026-08-23 and both serve 200.
docs-hosts: app-versions.conduction.nl,versioniq.conduction.nl

# The worker that ALREADY holds both custom domains. Without this the
# callee derives the name from `cname` — `versioniq-docs` — which does
# not exist. Deploying that would create a SECOND worker while both
# custom domains keep routing to `app-versions-docs`: every deploy
# green, reaching nobody. Renaming the worker is a Cloudflare-side move,
# not something this file can perform.
worker-name: app-versions-docs
Loading