Skip to content

Commit 6a6de53

Browse files
Omit Insiders-only plugin when building docs on CI (astral-sh#8652)
1 parent 5ba852a commit 6a6de53

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: mkdocs build --strict -f mkdocs.insiders.yml
4545
- name: "Build docs"
4646
if: ${{ env.MKDOCS_INSIDERS_SSH_KEY_EXISTS != 'true' }}
47-
run: mkdocs build --strict -f mkdocs.generated.yml
47+
run: mkdocs build --strict -f mkdocs.public.yml
4848
- name: "Deploy to Cloudflare Pages"
4949
if: ${{ env.CF_API_TOKEN_EXISTS == 'true' }}
5050
uses: cloudflare/[email protected]

mkdocs.public.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
INHERIT: mkdocs.generated.yml
2+
# Omit the `typeset` plugin which is only available in the Insiders version.
3+
plugins:
4+
- search

0 commit comments

Comments
 (0)