获取 github 仓库最新版本号和版本号列表的 API
实际使用时注意替换接口URL中对应的用户名和仓库名。项目为例,对应的 API 地址为。项目为例,对应的 API 地址为。
·
github 仓库,获取指定项目的最新版本号和所有版本号列表的两个API如下:
获取最新发布的一个的版本信息
以 fatedier/frp
项目为例,对应的 API 地址为 https://api.github.com/repos/fatedier/frp/releases/latest
所有版本信息
以 fatedier/frp
项目为例,对应的 API 地址为 https://api.github.com/repos/fatedier/frp/releases
实际使用时注意替换接口URL中对应的用户名和仓库名
结合curl获取最新版本号的值
# 使用curl下载版本信息
curl -o version.latest https://api.github.com/repos/fatedier/frp/releases/latest
# 正则表达式匹配版本号
cat version.latest | grep -E 'tag_name\": \"v[0-9]+\.[0-9]+\.[0-9]+' -o |head -n 1| tr -d 'tag_name\": \"'
(END)
更多推荐
已为社区贡献7条内容
所有评论(0)