feat(apk): 增加公开APK管理接口和CI/CD工作流
- 新增获取最新APK版本信息和下载APK的公开接口 - 更新README文档,添加APK管理接口的使用说明 - 实现CI/CD工作流,支持自动构建和部署 - 优化APK存储逻辑,确保只保留最新APK文件
This commit is contained in:
@@ -52,3 +52,11 @@ type APKInfo struct {
|
||||
CreatedAt time.Time `json:"createdAt"`
|
||||
}
|
||||
|
||||
type LatestAPKResponse struct {
|
||||
RuntimeVersion string `json:"runtimeVersion"`
|
||||
VersionName string `json:"versionName"`
|
||||
Size int64 `json:"size"`
|
||||
DownloadURL string `json:"downloadUrl"`
|
||||
CreatedAt string `json:"createdAt"`
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user