Fixed wrong value type for enabled setting in GitHub Actions (#7980)

This commit is contained in:
iBug
2025-02-07 20:18:13 +08:00
committed by GitHub
parent 99ef0b9e90
commit cd2ec69f01

View File

@@ -153,14 +153,14 @@ plugins:
- search
- social
# CI=1 mkdocs build
# CI=true mkdocs build
- group:
enabled: !ENV CI
plugins:
- git-revision-date-localized
- git-committers
# INSIDERS=1 mkdocs build
# INSIDERS=true mkdocs build
- group:
enabled: !ENV INSIDERS
plugins:
@@ -170,8 +170,8 @@ plugins:
Of course, you can also enable both groups with:
```
CI=1 INSIDERS=1 mkdocs build
``` shell
CI=true INSIDERS=true mkdocs build
```
[built-in group plugin]: ../plugins/group.md