From 28ce96af4b4d0cbc6c9ef897a4b1b64abb610849 Mon Sep 17 00:00:00 2001 From: machty Date: Tue, 20 Feb 2024 17:04:42 +0800 Subject: [PATCH] Add lfs option for checkout --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index 82bd0c6..3601a0d 100644 --- a/action.yml +++ b/action.yml @@ -27,6 +27,9 @@ inputs: fetch-depth: description: 'Number of commits to fetch. 0 indicates all history for all branches and tags.' default: 1 + lfs: + description: 'Whether to download Git-LFS files' + default: '' # turborepo options repo-token: @@ -42,6 +45,7 @@ runs: with: persist-credentials: ${{ inputs.persist-credentials }} fetch-depth: ${{ inputs.fetch-depth }} + lfs: ${{ inputs.lfs }} - name: 'Setup local TurboRepo server' if: ${{ inputs.repo-token }}