diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index 27b343753..c69733264 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -49,7 +49,7 @@ jobs: # apply surface build/packaging patches for PATCH in ../*.patch; do - git am ${PATCH} + git am -3 ${PATCH} done git add . @@ -57,7 +57,7 @@ jobs: # apply surface patches for PATCH in ../../../../patches/${KERNEL_VERSION%.*}/*.patch; do - git am < ${PATCH} + git am -3 ${PATCH} done git add . diff --git a/.github/workflows/debian_lts.yml b/.github/workflows/debian_lts.yml index 87d5f3976..7f5788d72 100644 --- a/.github/workflows/debian_lts.yml +++ b/.github/workflows/debian_lts.yml @@ -49,7 +49,7 @@ jobs: # apply surface build/packaging patches for PATCH in ../*.patch; do - git am ${PATCH} + git am -3 ${PATCH} done git add . @@ -57,7 +57,7 @@ jobs: # apply surface patches for PATCH in ../../../../patches/${KERNEL_VERSION%.*}/*.patch; do - git am ${PATCH} + git am -3 ${PATCH} done git add .