* doc

* doc
This commit is contained in:
Archer
2025-09-29 11:52:39 +08:00
committed by GitHub
parent 5749f66197
commit d6fc27a892
4 changed files with 20 additions and 12 deletions

View File

@@ -84,6 +84,12 @@ jobs:
find document/content/docs -name "*.mdx" -type f | while read file; do
sed -i 's|](/imgs/|](https://cdn.jsdelivr.net/gh/labring/fastgpt-img@main/|g' "$file"
done
- name: Rewrite domain links for CN
if: matrix.domain_config.suffix == 'cn'
run: |
find document/content/docs -name "*.mdx" -type f | while read file; do
sed -i 's|doc\.fastgpt\.io|doc.fastgpt.cn|g' "$file"
done
- name: Docker meta
id: meta