From 23a3eafc3fcae6a4ac438d21a12f723c03dd2905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Miguel?= <36349314+vrmiguel@users.noreply.github.com> Date: Wed, 6 Oct 2021 19:18:07 -0300 Subject: [PATCH] CI: fix macOS executable paths --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 35c7f0f..79a8f29 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -188,7 +188,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - args: --release --target x86_64-apple-darwin + args: --release - name: Run cargo test uses: actions-rs/cargo@v1 @@ -196,7 +196,7 @@ jobs: command: test - name: Strip binary - run: strip target/x86_64-apple-darwin/release/ouch + run: strip target/release/ouch - name: Upload binary uses: actions/upload-artifact@v2