From 1adc8aeec5da81635db01f0dfcd97b67ce6465c1 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 9 Oct 2023 17:05:56 -0400 Subject: [PATCH] Change puffin-cli binary to puffin --- .github/workflows/release.yml | 1 - crates/puffin-cli/Cargo.toml | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7997a9c1b7c8..dd7127523993 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,6 @@ on: push: tags: - '**[0-9]+.[0-9]+.[0-9]+*' - pull_request: jobs: # Run 'cargo dist plan' to determine what tasks we need to do diff --git a/crates/puffin-cli/Cargo.toml b/crates/puffin-cli/Cargo.toml index e93be7c9d92d..af5b0b19e3bb 100644 --- a/crates/puffin-cli/Cargo.toml +++ b/crates/puffin-cli/Cargo.toml @@ -3,6 +3,10 @@ name = "puffin-cli" version = "0.0.1" edition = "2021" +[[bin]] +name = "puffin" +path = "src/main.rs" + [dependencies] pep440_rs = { path = "../pep440-rs" } pep508_rs = { path = "../pep508-rs" }