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

This commit is contained in:
2026-01-19 14:47:52 -06:00
parent 557a202a68
commit 27cb3e5c25
2 changed files with 8 additions and 2 deletions

View File

@@ -9,6 +9,9 @@ on:
permissions:
contents: write
env:
MKDOCS_STRICT: ${{ vars.MKDOCS_STRICT || 'true' }}
jobs:
prerelease:
if: >
@@ -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

@@ -8,6 +8,9 @@ on:
permissions:
contents: write
env:
MKDOCS_STRICT: ${{ vars.MKDOCS_STRICT || 'true' }}
jobs:
release:
if: >
@@ -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: