From 67574e46dc7555b214f5e2040ecdbff307a709fd Mon Sep 17 00:00:00 2001 From: Kiefer Chang Date: Thu, 20 Apr 2023 09:32:08 +0800 Subject: [PATCH] action: fix failing to create installer PR Do not compare files. Payload is too big. Signed-off-by: Kiefer Chang --- .github/workflows/installer-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/installer-pr.yml b/.github/workflows/installer-pr.yml index 7d8c9f0..a3864ce 100644 --- a/.github/workflows/installer-pr.yml +++ b/.github/workflows/installer-pr.yml @@ -30,7 +30,7 @@ jobs: source /tmp/tmp-env docker pull $BASE_OS_IMAGE echo "Diff $BASE_OS_IMAGE with ${{ env.IMAGE_NAME }}..." - sudo container-diff diff daemon://docker.io/$BASE_OS_IMAGE daemon://docker.io/${{ env.IMAGE_NAME }} --type=rpm --type=file --output=diff-result.txt + sudo container-diff diff daemon://docker.io/$BASE_OS_IMAGE daemon://docker.io/${{ env.IMAGE_NAME }} --type=rpm --output=diff-result.txt cat diff-result.txt - name: Upload container-diff result uses: actions/upload-artifact@v3