mirror of
https://github.com/zhouxiaoka/autoclip.git
synced 2026-05-06 14:04:32 +08:00
fix: 修复GitHub Actions中的markdown-link-check兼容性问题
- 升级Node.js版本从18到20,解决兼容性问题 - 使用npx运行markdown-link-check,避免全局安装问题 - 修复.github/README.md中的GitHub链接 - 统一所有README文件的链接格式
This commit is contained in:
18
.github/README.md
vendored
18
.github/README.md
vendored
@@ -13,9 +13,9 @@
|
||||
[](https://celeryproject.org)
|
||||
[](LICENSE)
|
||||
|
||||
[](https://github.com/your-username/autoclip)
|
||||
[](https://github.com/your-username/autoclip)
|
||||
[](https://github.com/your-username/autoclip/issues)
|
||||
[](https://github.com/zhouxiaoka/autoclip)
|
||||
[](https://github.com/zhouxiaoka/autoclip)
|
||||
[](https://github.com/zhouxiaoka/autoclip/issues)
|
||||
|
||||
**语言**: [English](README-EN.md) | [中文](README.md)
|
||||
|
||||
@@ -65,7 +65,7 @@ AutoClip是一个基于AI的智能视频切片处理系统,能够自动从YouT
|
||||
|
||||
```bash
|
||||
# 克隆项目
|
||||
git clone https://github.com/your-username/autoclip.git
|
||||
git clone https://github.com/zhouxiaoka/autoclip.git
|
||||
cd autoclip
|
||||
|
||||
# Docker一键启动
|
||||
@@ -85,7 +85,7 @@ cd autoclip
|
||||
|
||||
```bash
|
||||
# 克隆项目
|
||||
git clone https://github.com/your-username/autoclip.git
|
||||
git clone https://github.com/zhouxiaoka/autoclip.git
|
||||
cd autoclip
|
||||
|
||||
# 一键启动(推荐,包含完整检查和监控)
|
||||
@@ -107,9 +107,9 @@ cd autoclip
|
||||
- **飞书**: your_feishu_id
|
||||
|
||||
### 开源贡献
|
||||
- **问题反馈**: [GitHub Issues](https://github.com/your-username/autoclip/issues)
|
||||
- **功能建议**: [GitHub Discussions](https://github.com/your-username/autoclip/discussions)
|
||||
- **代码贡献**: [GitHub Pull Requests](https://github.com/your-username/autoclip/pulls)
|
||||
- **问题反馈**: [GitHub Issues](https://github.com/zhouxiaoka/autoclip/issues)
|
||||
- **功能建议**: [GitHub Discussions](https://github.com/zhouxiaoka/autoclip/discussions)
|
||||
- **代码贡献**: [GitHub Pull Requests](https://github.com/zhouxiaoka/autoclip/pulls)
|
||||
|
||||
---
|
||||
|
||||
@@ -117,7 +117,7 @@ cd autoclip
|
||||
|
||||
**如果这个项目对你有帮助,请给我们一个 ⭐ Star!**
|
||||
|
||||
[](https://star-history.com/#your-username/autoclip&Date)
|
||||
[](https://star-history.com/#zhouxiaoka/autoclip&Date)
|
||||
|
||||
Made with ❤️ by AutoClip Team
|
||||
|
||||
|
||||
10
.github/workflows/i18n-sync.yml
vendored
10
.github/workflows/i18n-sync.yml
vendored
@@ -23,18 +23,18 @@ jobs:
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '18'
|
||||
node-version: '20'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
npm install -g markdown-link-check
|
||||
npm install -g markdown-link-check@latest
|
||||
npm install -g markdownlint-cli
|
||||
|
||||
- name: Check markdown links
|
||||
run: |
|
||||
markdown-link-check README.md
|
||||
markdown-link-check README-EN.md
|
||||
markdown-link-check .github/README.md
|
||||
npx markdown-link-check README.md
|
||||
npx markdown-link-check README-EN.md
|
||||
npx markdown-link-check .github/README.md
|
||||
|
||||
- name: Lint markdown files
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user