From a8540676984b02ac552f1f00fea52778666cf257 Mon Sep 17 00:00:00 2001 From: Han Gao Date: Wed, 2 Aug 2023 10:45:26 +0800 Subject: [PATCH] chore: remove compress Signed-off-by: Han Gao --- .github/workflows/kernel.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/kernel.yml b/.github/workflows/kernel.yml index 24eee8817..b35375420 100644 --- a/.github/workflows/kernel.yml +++ b/.github/workflows/kernel.yml @@ -96,14 +96,16 @@ jobs: # Install DTB sudo cp -v arch/riscv/boot/dts/thead/{light-lpi4a.dtb,light-lpi4a-16gb.dtb,light-beagle.dtb} ${GITHUB_WORKSPACE}/rootfs/boot/ + + ls -al ${GITHUB_WORKSPACE}/rootfs/ popd - - name: compress - run: tar -zcvf thead-kernel-${{ matrix.name }}.tar.gz rootfs + # - name: compress + # run: tar -zcvf thead-kernel-${{ matrix.name }}.tar.gz rootfs - name: 'Upload Artifact' uses: actions/upload-artifact@v3 with: - name: thead-kernel-${{ matrix.name }}.tar.gz - path: thead-kernel-${{ matrix.name }}.tar.gz + name: thead-kernel-${{ matrix.name }} + path: rootfs/* retention-days: 30