diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a8c6699a6..c4e836a24 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -82,7 +82,7 @@ jobs: apt-get -y install build-essential fakeroot rsync git wget python3-debian dpkg-sig lz4 apt-get -y build-dep linux - - name: Fetch kernel source + - name: Prepare kernel source env: KERNEL_VERSION: 5.4.13 run: | @@ -91,13 +91,8 @@ jobs: # download sources wget https://cdn.kernel.org/pub/linux/kernel/v${KERNEL_VERSION%%.*}.x/linux-$KERNEL_VERSION.tar.xz tar xf linux-$KERNEL_VERSION.tar.xz - mv linux-$KERNEL_VERSION linux - - name: Apply patches - env: - KERNEL_VERSION: 5.4.13 - run: | - cd pkg/debian/linux + mv linux-$KERNEL_VERSION linux && cd linux # apply build patches for PATCH in ../*.patch; do patch -p1 < ${PATCH}; done