chore(release): 0.1.147-unstable.20260830081636 #217
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Documentation | |
| # Publishes the docs site to the Cloudflare Worker that serves it. | |
| # | |
| # TRIGGERS ON `development`, NOT ON A `documentation` BRANCH. This file used to | |
| # listen on a branch called `documentation`; nobody has pushed to one since | |
| # 2026-05-25, so the site simply stopped being rebuilt while every docs change | |
| # merged to development satisfied its review and published nothing. | |
| on: | |
| push: | |
| branches: [development] | |
| pull_request: | |
| branches: [development] | |
| jobs: | |
| deploy: | |
| uses: ConductionNL/.github/.github/workflows/documentation.yml@main | |
| # A reusable workflow receives NO secrets by default. Without this block the | |
| # callee's publish step finds CF_API_TOKEN empty, skips itself on its own | |
| # `if:` guard, and the run finishes GREEN having changed nothing -- the | |
| # failure that left the fleet's docs sites on May builds. The names are the | |
| # same on both sides; the org secrets really are CF_API_TOKEN/CF_ACCOUNT_ID. | |
| secrets: | |
| CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }} | |
| CF_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }} | |
| with: | |
| cname: stackiq.conduction.nl | |
| # softwarecatalog.conduction.nl is the retired hostname. It stays in docs-hosts so | |
| # existing links keep resolving, and canonical-host below turns it into a | |
| # 301 rather than a second live copy of every page. | |
| # EVERY host this worker answers on, in FULL: wrangler reconciles the | |
| # worker's triggers against this list, so a host left out is REMOVED and | |
| # goes dark. | |
| docs-hosts: softwarecatalog.conduction.nl,stackiq.conduction.nl | |
| # The ONE hostname this site is reached on. Every other host in | |
| # docs-hosts answers 301 to the same path here. Before this, both hostnames | |
| # served identical content and the retired name stayed as discoverable | |
| # as the current one. | |
| canonical-host: stackiq.conduction.nl | |
| # PINNED. Deriving the name is how a deploy goes green and reaches | |
| # nobody: wrangler creates the derived worker and publishes there while | |
| # the custom domains keep routing to the real one. | |
| worker-name: softwarecatalog-docs |