From a6d22c8843491dd1fddc9a40dc7fcbeb81ebfe5d Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Fri, 12 Sep 2025 13:00:35 -0600 Subject: [PATCH] ci: Fixed typo in temp directory variable name --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8c01ee8..7a30ffd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,7 +47,7 @@ jobs: - name: Ensure TMPDIR is valid for MacOS if: runner.os == 'macOS' run: | - echo "TMPDIR={{ runner.temp }}" >> $GITHUB_ENV + echo "TMPDIR=${{ runner.temp }}" >> $GITHUB_ENV - name: Install Rust stable uses: dtolnay/rust-toolchain@stable