- 新增获取最新APK版本信息和下载APK的公开接口 - 更新README文档,添加APK管理接口的使用说明 - 实现CI/CD工作流,支持自动构建和部署 - 优化APK存储逻辑,确保只保留最新APK文件
33 lines
316 B
Plaintext
33 lines
316 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
README.md
|
|
|
|
# Development files
|
|
.vscode
|
|
.idea
|
|
|
|
# Build artifacts (will be copied from CI)
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test files
|
|
*_test.go
|
|
*.test
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.log
|
|
|
|
# Gitea workflows (not needed in image)
|
|
.gitea
|
|
.github
|
|
|
|
# Scripts (not needed in image)
|
|
*.sh
|