From 83a05c85705c03d9b7ce9b721c7dc1738eecc23c Mon Sep 17 00:00:00 2001 From: atharva-2001 Date: Mon, 20 Feb 2023 14:43:51 +0530 Subject: [PATCH] Do git lfs checkout if the cache key is found --- .github/workflows/tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d24cf0bc236..bf5810b368a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -69,6 +69,11 @@ jobs: run: git lfs pull working-directory: tardis-refdata if: steps.lfs-cache.outputs.cache-hit != 'true' + + - name: Git LFS Checkout + run: git lfs checkout + working-directory: tardis-refdata + if: steps.lfs-cache.outputs.cache-hit == 'true' - name: Setup environment uses: conda-incubator/setup-miniconda@v2