From 4e259a76818881d0a0428c91990a3b940a557250 Mon Sep 17 00:00:00 2001 From: Rain Date: Tue, 5 Mar 2024 11:16:51 -0800 Subject: [PATCH] [release] update rust-upload-binary-action, remove strip workaround As mentioned in https://github.com/nextest-rs/nextest/issues/1345#issuecomment-1979261374, this workaround is no longer required with the latest version of rust-upload-binary-action. --- .github/workflows/release.yml | 2 +- Cargo.toml | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b5d51079863..2a641434530 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -189,7 +189,7 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - name: Install Rust uses: dtolnay/rust-toolchain@stable - - uses: taiki-e/upload-rust-binary-action@aefa20ac5893ee9a660dd3e995c9dc9a715e93f0 # v1.18.0 + - uses: taiki-e/upload-rust-binary-action@6eae9d714e13744ede2258c97f4390dd0d88331e # v1.19.0 with: bin: cargo-nextest # The tag name contains the binary name so just use that. diff --git a/Cargo.toml b/Cargo.toml index 373a07ff3ce..3db8f451105 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,10 +35,6 @@ opt-level = 3 [profile.dev.package.similar] opt-level = 3 -[profile.release] -# This is Cargo's default, but the rust-binary-upload-action calls `strip` if this isn't set anyway. -strip = "none" - [patch.crates-io] nextest-workspace-hack = { path = "workspace-hack" }