From 961c7acca4d20b3e9d80deaa0216fc8c481bf7ab Mon Sep 17 00:00:00 2001 From: Minimata Date: Thu, 19 Jun 2025 14:05:44 +0200 Subject: [PATCH] fix: dichotomying --- action.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/action.yaml b/action.yaml index 4290568..fe7ec59 100644 --- a/action.yaml +++ b/action.yaml @@ -20,13 +20,13 @@ runs: if: ${{ inputs.checkout-version == '3' }} run: /usr/bin/git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id - #- name: Restore LFS cache - # if: ${{ inputs.checkout-version == '3' }} - # uses: actions/cache@v4 - # id: lfs-cache - # with: - # path: .git/lfs - # key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }} + - name: Restore LFS cache + if: ${{ inputs.checkout-version == '3' }} + uses: actions/cache@v4 + id: lfs-cache + with: + path: .git/lfs + key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }} - name: Checkout LFS if: ${{ inputs.checkout-version == '3' }}