From 2e4a999620d7e179269ce1c45acd30615c33254b Mon Sep 17 00:00:00 2001 From: Tushar Shah Date: Sat, 3 Feb 2024 14:35:23 -0700 Subject: [PATCH] use cargo --manifest_path instead of cd --- .github/workflows/rust_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust_ci.yml b/.github/workflows/rust_ci.yml index fd25ab5..29cca2f 100644 --- a/.github/workflows/rust_ci.yml +++ b/.github/workflows/rust_ci.yml @@ -38,4 +38,4 @@ jobs: buildtargets: esp32 ldproxy: true - name: Run command - run: cd {{ matrix.crate }} && cargo ${{ matrix.action.command }} ${{ matrix.action.args }} + run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }} --manifest-path=${{ matrix.crate }}/Cargo.toml