From 1246d486ffa35e8f7655dc49fdd8d20e5f31f676 Mon Sep 17 00:00:00 2001 From: GsLogimaker Date: Sun, 5 May 2024 16:10:39 -0500 Subject: [PATCH] Update unittests.yml --- .github/workflows/unittests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 97de630..170658a 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -34,7 +34,7 @@ jobs: TARGET: ${{ env.LINUX_64_TARGET }} run: | rustup update - rustup target add ${TARGET} + rustup target add ${{ env.TARGET }} - name: 🦀 Build Rust code run: | @@ -42,7 +42,7 @@ jobs: --manifest-path ./addons/glecs/rust/glecs/Cargo.toml \ --features compile_bindings \ --target-dir ./addons/glecs/bin - --target="${TARGET}" + --target=${{ env.TARGET }} # Copy library for use in test suite cp ./addons/glecs/bin/${TARGET}/release ./addons/glecs/bin/debug -r