Skip to content

Commit 8479a49

Browse files
authored
Update entrypoint.sh
1 parent f4a4be0 commit 8479a49

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

entrypoint.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ echo "${INPUT_DEPLOY_KEY}" > ~/.ssh/id_rsa
1616
chmod 600 ~/.ssh/id_rsa
1717

1818
# set up git
19-
git lfs install
2019
git config --global user.name "${INPUT_GIT_USERNAME}"
2120
git config --global user.email "${INPUT_GIT_EMAIL}"
2221
ssh-keyscan -H github.com > ~/.ssh/known_hosts
@@ -32,6 +31,8 @@ git checkout $INPUT_DESTINATION_BRANCH || git checkout -b $INPUT_DESTINATION_BRA
3231
# ensure destination directory exists, and is emptied if appropriate
3332
mkdir -p $INPUT_DESTINATION_FOLDER
3433
cd $INPUT_DESTINATION_FOLDER
34+
git lfs install
35+
3536
if [ "${INPUT_DELETE_DESTINATION}" = "true" ]; then
3637
git rm -rf .
3738
fi

0 commit comments

Comments
 (0)