Skip to content

Commit e8841cd

Browse files
committed
No index
1 parent 28ac74f commit e8841cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ jobs:
7373
fi
7474
7575
# Capture diff of the changes between the two branches
76-
git diff --no-color --binary --full-index ${BUILD_BRANCH} ${GITHUB_REF_NAME} > "${DIFF_FILE}"
76+
git diff --no-color --binary ${BUILD_BRANCH} ${GITHUB_REF_NAME} > "${DIFF_FILE}"
7777
7878
# If there are changes, apply & push
7979
if [ -s "${DIFF_FILE}" ]; then
80-
git apply --index "${DIFF_FILE}"
80+
git apply "${DIFF_FILE}"
8181
8282
# Add file changes and commit
8383
git add -A

0 commit comments

Comments
 (0)