setup-cpp
Version:
Install all the tools required for building and testing C++/C projects.
19 lines (16 loc) • 421 B
text/typescript
import { saveGitHubAssetList } from "../utils/asset/fetch-github-assets.ts"
/**
* Generate the list of all releases of a GitHub repository and save it to a json file
*/
async function main() {
// https://github.com/facebook/infer/releases
await saveGitHubAssetList(
"facebook",
"infer",
"./src/infer/github_facebook_infer.json",
)
}
main().catch((err) => {
console.error(err)
process.exit(1)
})