From 5abc3b3a9b633021b822aeee6b8d2d6188e3981e Mon Sep 17 00:00:00 2001 From: SticksDev Date: Tue, 29 Aug 2023 14:22:17 -0400 Subject: [PATCH] Update entrypoint.sh Use lfs for .zip files --- entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index bedf530..56c5d63 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -28,6 +28,9 @@ cp /workspace/.env /crawler/.env echo "Cloning output..." git clone "https://$INPUT_ACTOR:$INPUT_TOKEN@teamhydra.io/$OUTPUT_REPOSITORY.git" /output +echo "Using LFS for .zip files" +git lfs track "*.zip" + # Run crawler echo "Running crawler..."