4 Commits

Author SHA1 Message Date
08c50299f0 Update RELEASING.md
All checks were successful
CI - Docs build check / build-check (push) Successful in 6s
2026-01-19 22:42:21 +00:00
27cb3e5c25 some fixes propagating to other workflows
All checks were successful
CI - Docs build check / build-check (push) Successful in 5s
Pre-release - Build and publish docs / prerelease (push) Successful in 9m7s
Release - Build and publish docs / release (push) Has been skipped
2026-01-19 14:47:52 -06:00
557a202a68 attempt setting env variable
Some checks failed
CI - Docs build check / build-check (push) Successful in 5s
Pre-release - Build and publish docs / prerelease (push) Failing after 4m36s
Release - Build and publish docs / release (push) Has been skipped
2026-01-19 14:30:42 -06:00
47485b05b2 disable cache, keep setup python
Some checks failed
CI - Docs build check / build-check (push) Failing after 21s
2026-01-19 14:26:45 -06:00
4 changed files with 28 additions and 18 deletions

View File

@@ -10,6 +10,9 @@ on:
permissions:
contents: read
env:
MKDOCS_STRICT: ${{ vars.MKDOCS_STRICT || 'true' }}
jobs:
build-check:
runs-on: ubuntu-latest
@@ -19,12 +22,12 @@ jobs:
uses: actions/checkout@v4
- name: Setup Python
if: false
# if: false
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
cache-dependency-path: mkdocs/requirements.txt
# cache: "pip"
# cache-dependency-path: mkdocs/requirements.txt
- name: Install dependencies
run: |

View File

@@ -8,6 +8,9 @@ on:
permissions:
contents: write
env:
MKDOCS_STRICT: ${{ vars.MKDOCS_STRICT || 'true' }}
jobs:
prerelease:
@@ -53,7 +56,7 @@ jobs:
STRICT_FLAG="--strict"
fi
OFFLINE=true mkdocs build ${STRICT_FLAG} -f mkdocs/mkdocs.yml
OFFLINE=true mkdocs build ${STRICT_FLAG} -f mkdocs/mkdocs.yml -d $RUNNER_TEMP
- name: Build artifact (non-strict)
env:

View File

@@ -7,6 +7,9 @@ on:
permissions:
contents: write
env:
MKDOCS_STRICT: ${{ vars.MKDOCS_STRICT || 'true' }}
jobs:
release:
@@ -52,7 +55,7 @@ jobs:
STRICT_FLAG="--strict"
fi
OFFLINE=true mkdocs build ${STRICT_FLAG} -f mkdocs/mkdocs.yml
OFFLINE=true mkdocs build ${STRICT_FLAG} -f mkdocs/mkdocs.yml -d $RUNNER_TEMP
- name: Build artifact (non-strict)
env:

View File

@@ -65,13 +65,13 @@ This naming policy is intentional and is enforced by CI.
## CI and Workflows Overview
| Workflow | Trigger | Purpose |
|———|———|———|
| CI Docs | Push / PR to `release-candidate` | Strict MkDocs build validation |
| Prerelease | Tag `v*` containing `-rc` | Build and publish prerelease artifacts |
| Release | Tag `v*` not containing `-rc` | Build and publish final release |
| RC Pages Deploy | RC tag | Publish preview docs under `/rc/<tag>/` |
| Main Pages Deploy | Push to `main` | Publish stable docs to root |
| Workflow | Trigger | Purpose |
|-------------------|----------------------------------|----------------------------------------|
| CI Docs | Push / PR to `release-candidate` | Strict MkDocs build validation |
| Prerelease | Tag `v*` containing `-rc` | Build and publish prerelease artifacts |
| Release | Tag `v*` not containing `-rc` | Build and publish final release |
| RC Pages Deploy | RC tag | Publish preview docs under `/rc//` |
| Main Pages Deploy | Push to `main` | Publish stable docs to root |
@@ -116,12 +116,13 @@ This redundancy is intentional.
These variables control CI and release behavior:
| Variable | Purpose |
|———|———|
| `MKDOCS_STRICT` | Enable/disable strict MkDocs builds |
| `ENABLE_RELEASE` | Master switch for releases |
| `ENABLE_DEPLOY` | Master switch for deployments |
| `CI_PROVIDER` | `github`, `gitea`, or `act` |
| Variable | Purpose |
|-------------------|-------------------------------------|
| `MKDOCS_STRICT` | Enable/disable strict MkDocs builds |
| `ENABLE_RELEASE` | Master switch for releases |
| `ENABLE_DEPLOY` | Master switch for deployments |
| `CI_PROVIDER` | `github`, `gitea`, or `act` |
| Main Pages Deploy | Push to `main` |
Defaults are defined in repository settings.