BHznJNs我用我自己写的 agent 开发了一个 CI 下使用的 CLI 工具 中发帖

项目地址: 

顾名思义,这是一个专门用于下载代码库中依赖的外部预构建二进制文件的 CLI 小工具。 
如何安装
通过 binstall: 
cargo binstall prebuilt-down

通过 cargo: 
cargo install prebuilt-down

在 GitHub Actions 配置中: 
- uses: cargo-bins/cargo-binstall@main
- run: cargo binstall prebuilt-down --no-confirm

使用方式
默认会自动读取当前目录下的 prebuilt-down.toml 配置文件并自动下载解压: 
prebuilt-down

可以指定配置文件路径: 
prebuilt-down --config config/binaries.toml
prebuilt-down -c config...
 
 
Back to Top