mirror of
https://github.com/taiki-e/install-action
synced 2026-09-07 20:03:26 +00:00
Support wild (#1949)
This commit is contained in:
@@ -15,6 +15,7 @@ done
|
||||
# in .github/workflows/ci.yml, and match for alias for tools/codegen/src/tools-markdown.rs.
|
||||
tools+=(
|
||||
nextest
|
||||
wild-linker
|
||||
taplo-cli
|
||||
typos-cli
|
||||
wasm-bindgen-cli
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"repository": "https://github.com/wild-linker/wild",
|
||||
"license_markdown": "[Apache-2.0](https://github.com/wild-linker/wild/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/wild-linker/wild/blob/main/LICENSE-MIT)",
|
||||
"tag_prefix": "",
|
||||
"version_range": ">= 0.9.0",
|
||||
"rust_crate": "${package}-linker",
|
||||
"asset_name": "${package}-linker-${version}-${rust_target}.tar.gz",
|
||||
"bin": "${package}-linker-${version}-${rust_target}/${package}${exe}",
|
||||
"platform": {
|
||||
"x86_64_linux_musl": {},
|
||||
"aarch64_linux_musl": {},
|
||||
"riscv64_linux_musl": {}
|
||||
}
|
||||
}
|
||||
@@ -125,7 +125,8 @@ fn main() {
|
||||
// and tool input option in test-alias in .github/workflows/ci.yml.
|
||||
let alias = match name.as_str() {
|
||||
"cargo-nextest" => Some(name.strip_prefix("cargo-").unwrap().to_owned()),
|
||||
"taplo" | "typos-cli" | "wasm-bindgen" | "wasmtime" => Some(format!("{name}-cli")),
|
||||
"wild" => Some(format!("{name}-linker")),
|
||||
"taplo" | "typos" | "wasm-bindgen" | "wasmtime" => Some(format!("{name}-cli")),
|
||||
_ => None,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user