We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4a4be0 commit 8479a49Copy full SHA for 8479a49
entrypoint.sh
@@ -16,7 +16,6 @@ echo "${INPUT_DEPLOY_KEY}" > ~/.ssh/id_rsa
16
chmod 600 ~/.ssh/id_rsa
17
18
# set up git
19
-git lfs install
20
git config --global user.name "${INPUT_GIT_USERNAME}"
21
git config --global user.email "${INPUT_GIT_EMAIL}"
22
ssh-keyscan -H github.com > ~/.ssh/known_hosts
@@ -32,6 +31,8 @@ git checkout $INPUT_DESTINATION_BRANCH || git checkout -b $INPUT_DESTINATION_BRA
32
31
# ensure destination directory exists, and is emptied if appropriate
33
mkdir -p $INPUT_DESTINATION_FOLDER
34
cd $INPUT_DESTINATION_FOLDER
+git lfs install
35
+
36
if [ "${INPUT_DELETE_DESTINATION}" = "true" ]; then
37
git rm -rf .
38
fi
0 commit comments