We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 627e6eb commit 6a90835Copy full SHA for 6a90835
.github/workflows/docs.yml
@@ -16,6 +16,10 @@ jobs:
16
build:
17
name: Deploy Python docs
18
runs-on: ubuntu-latest
19
+ # Used for configuring social plugin in mkdocs.yml
20
+ # Unclear if this is always set in github actions
21
+ env:
22
+ CI: "TRUE"
23
steps:
24
- uses: actions/checkout@v4
25
# We need to additionally fetch the gh-pages branch for mike deploy
mkdocs.yml
@@ -126,7 +126,8 @@ extra_css:
126
plugins:
127
- blog
128
- search
129
- - social
+ - social:
130
+ enabled: !ENV [CI, false]
131
- mike:
132
alias_type: "copy"
133
canonical_version: "latest"
0 commit comments