From ea0f04f23333a5ccba9f951c6b88654b81965faf Mon Sep 17 00:00:00 2001 From: Justin Laughlin Date: Fri, 19 Apr 2024 14:44:06 -0700 Subject: [PATCH] fix env var --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index e9c984a9..4c9b27fe 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -105,7 +105,7 @@ jobs: - name: Download CUDA if: matrix.cuda && steps.cache-cuda.outputs.cache-hit == false run: | - echo "CUDA_URL=https://developer.download.nvidia.com/compute/cuda/${{ env.cuda-version.toolkit }}/local_installers/cuda_${{ env.cuda-version.toolkit }}_${{ env.cuda-version.driver }}_linux.run" >> $GITHUB_ENV + CUDA_URL="https://developer.download.nvidia.com/compute/cuda/${{ env.cuda-version.toolkit }}/local_installers/cuda_${{ env.cuda-version.toolkit }}_${{ env.cuda-version.driver }}_linux.run" curl -o ~/cache/cuda.run --create-dirs $CUDA_URL - name: Install CUDA