We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28ac74f commit e8841cdCopy full SHA for e8841cd
.github/workflows/deploy.yml
@@ -73,11 +73,11 @@ jobs:
73
fi
74
75
# Capture diff of the changes between the two branches
76
- git diff --no-color --binary --full-index ${BUILD_BRANCH} ${GITHUB_REF_NAME} > "${DIFF_FILE}"
+ git diff --no-color --binary ${BUILD_BRANCH} ${GITHUB_REF_NAME} > "${DIFF_FILE}"
77
78
# If there are changes, apply & push
79
if [ -s "${DIFF_FILE}" ]; then
80
- git apply --index "${DIFF_FILE}"
+ git apply "${DIFF_FILE}"
81
82
# Add file changes and commit
83
git add -A
0 commit comments