diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ebd1e52..7b7d988 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: with: # (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload. # Note that glob pattern is not supported yet. - bin: ... + bin: sol-xen-multiminer,sol-xen-client # (optional) Target triple, default is host triple. # This is optional but it is recommended that this always be set to # clarify which target you are building for if macOS is included in diff --git a/app/sol-xen-client/Cargo.toml b/app/sol-xen-client/Cargo.toml index 2f51ec4..b3e72e2 100644 --- a/app/sol-xen-client/Cargo.toml +++ b/app/sol-xen-client/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [[bin]] -name = "sol_xen_client" +name = "sol-xen-client" path = "src/main.rs" [dependencies] diff --git a/app/sol-xen-multiminer/Cargo.toml b/app/sol-xen-multiminer/Cargo.toml index f01a352..6c1d7a5 100644 --- a/app/sol-xen-multiminer/Cargo.toml +++ b/app/sol-xen-multiminer/Cargo.toml @@ -5,7 +5,7 @@ description = "solXEN Rust Multiminer" edition = "2021" [[bin]] -name = "sol_xen_multiminer" +name = "sol-xen-multiminer" path = "src/main.rs" [dependencies]