6 Commits

Author SHA1 Message Date
ddb44e9846 test
Some checks failed
CI - Docs build check / build-check (push) Successful in 7s
Deploy RC preview to GitHub Pages / deploy-rc-pages (push) Failing after 5s
Build & publish docs (rc + release) / build (push) Successful in 6s
Build & publish docs (rc + release) / release (push) Successful in 2s
Build & publish docs (rc + release) / deploy (push) Successful in 1s
2026-02-05 13:47:59 -06:00
f1f4a69bd1 oops
Some checks failed
CI - Docs build check / build-check (push) Successful in 8s
Deploy RC preview to GitHub Pages / deploy-rc-pages (push) Failing after 5s
Build & publish docs (rc + release) / build (push) Failing after 4s
Build & publish docs (rc + release) / release (push) Has been skipped
Build & publish docs (rc + release) / deploy (push) Has been skipped
2026-02-05 13:40:06 -06:00
dea9106556 test
Some checks failed
CI - Docs build check / build-check (push) Successful in 8s
Deploy RC preview to GitHub Pages / deploy-rc-pages (push) Failing after 5s
2026-02-05 13:35:51 -06:00
f7345b5433 test
Some checks failed
CI - Docs build check / build-check (push) Failing after 8s
Deploy RC preview to GitHub Pages / deploy-rc-pages (push) Failing after 5s
2026-02-05 13:30:06 -06:00
a5640d0e02 oops more errors 2026-02-05 13:25:56 -06:00
50252ece04 oops branch name wrong 2026-02-05 13:18:55 -06:00
2 changed files with 13 additions and 10 deletions

View File

@@ -4,7 +4,7 @@ on:
push: push:
branches: branches:
- main - main
- development - develop
- release-candidate - release-candidate
workflow_dispatch: workflow_dispatch:
@@ -12,16 +12,15 @@ permissions:
contents: read contents: read
env: env:
MKDOCS_STRICT: ${{ vars.MKDOCS_STRICT:-true }} MKDOCS_STRICT: ${{ vars.MKDOCS_STRICT || 'true' }}
MKDOCS_CONFIG: mkdocs/mkdocs.yml MKDOCS_CONFIG: mkdocs/mkdocs.yml
MKDOCS_OFFLINE: false MKDOCS_OFFLINE: false
CSPELL_CONFIG: tools/spellcheck/cspell.yml CSPELL_CONFIG: tools/spellcheck/cspell.yml
CSPELL_TARGETS: "docs/**/*.md" README.md CSPELL_TARGETS: docs/**/*.md README.md
jobs: jobs:
build-check: build-check:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -35,7 +34,7 @@ jobs:
run: | run: |
set -euo pipefail set -euo pipefail
npx --yes cspell \ npx --yes cspell \
--config ${CSPELL_CONFIG \ --config ${CSPELL_CONFIG} \
${CSPELL_TARGETS} ${CSPELL_TARGETS}
- name: Install build dependencies - name: Install build dependencies

View File

@@ -3,7 +3,7 @@ name: Build & publish docs (rc + release)
on: on:
push: push:
tags: tags:
- "rc-*" - "rc*"
- "v*" - "v*"
workflow_dispatch: workflow_dispatch:
@@ -43,20 +43,24 @@ jobs:
mkdir -p "${MKDOCS_OUTPUT_DIR}" mkdir -p "${MKDOCS_OUTPUT_DIR}"
OFFLINE="${OFFLINE}" mkdocs build \ OFFLINE="${OFFLINE:-true}" mkdocs build \
"${FLAGS[@]}" \ "${FLAGS[@]}" \
-f "${MKDOCS_CONFIG}" \ -f "${MKDOCS_CONFIG}" \
-d "${MKDOCS_OUTPUT_DIR}" -d "${MKDOCS_OUTPUT_DIR}/offline"
mkdocs build \
"${FLAGS[@]}" \
-f "${MKDOCS_CONFIG}" \
-d "${MKDOCS_OUTPUT_DIR}/dist"
- name: Zip site - name: Zip site
run: | run: |
set -euo pipefail set -euo pipefail
cd "${MKDOCS_OUTPUT_DIR}" cd "${MKDOCS_OUTPUT_DIR}"
zip -r "${GITHUB_REF_NAME}.zip" . zip -r "${GITHUB_REF_NAME}.zip" "./offline"
release: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build needs: build
steps: steps:
# ------------------------- # -------------------------
# RC-only step # RC-only step
# ------------------------- # -------------------------