Skip to content

Commit 0df229f

Browse files
lsteinclaude
andauthored
fix(ci): repair wrapped ENABLE_ANALYTICS expression in deploy-docs workflow (invoke-ai#9271)
* fix(ci): repair wrapped ENABLE_ANALYTICS expression in deploy-docs workflow The `${{ ... }}` expression for ENABLE_ANALYTICS was wrapped across two lines (splitting mid-expression after `||`), producing a YAML syntax error. Join it back onto a single line. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(docs): remove broken anchor link to aside in fp8-storage page The link to #for-full-precision-models-only targeted a Starlight :::caution callout, which doesn't generate a heading anchor. This failed starlight-links-validator and broke the docs build. Drop the anchor link, keep the cross-reference prose. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent df83fd0 commit 0df229f

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,7 @@ jobs:
116116
working-directory: docs
117117
env:
118118
DEPLOY_TARGET: ${{ github.event_name == 'workflow_dispatch' && inputs.deploy_target || 'custom' }}
119-
ENABLE_ANALYTICS: ${{ github.ref == 'refs/heads/main' && (github.event_name != 'workflow_dispatch' ||
120-
inputs.deploy_target == 'custom') }}
119+
ENABLE_ANALYTICS: ${{ github.ref == 'refs/heads/main' && (github.event_name != 'workflow_dispatch' || inputs.deploy_target == 'custom') }}
121120
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
122121

123122
- name: verify deploy output

docs/src/content/docs/configuration/fp8-storage.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ If you see unexpected quality regressions, disable FP8 Storage on the affected m
9292

9393
**FP8 + partial loading**: fully supported. FP8 Storage shrinks the layers; partial loading streams them between RAM and VRAM as needed. Use both on tight VRAM budgets.
9494

95-
(For why FP8 Storage doesn't stack on top of GGUF / NF4 / int8 checkpoints, see the [callout at the top of this page](#for-full-precision-models-only).)
95+
(For why FP8 Storage doesn't stack on top of GGUF / NF4 / int8 checkpoints, see the callout at the top of this page.)
9696

9797
## Troubleshooting
9898

0 commit comments

Comments
 (0)