From 0befcec3aa8e4d7b9a9e8511765da38a7976dd23 Mon Sep 17 00:00:00 2001 From: Matt Burridge <81111055+mburridge96@users.noreply.github.com> Date: Thu, 21 Nov 2024 11:52:08 +0000 Subject: [PATCH] attempted to fix binary creation in CI for cli --- .github/workflows/cli.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cli.yml b/.github/workflows/cli.yml index c348523..ce1f69a 100644 --- a/.github/workflows/cli.yml +++ b/.github/workflows/cli.yml @@ -51,7 +51,7 @@ jobs: cargo install cross cd cli && cross build --release --target=${{ matrix.rust_target }} fi - mkdir -p dist/${{ matrix.platform }} + cd ../ && mkdir -p dist/${{ matrix.platform }} # Package the binary - name: Package Binary