From ff8f2966b162bc8980cbe4f0ce35438e203acd46 Mon Sep 17 00:00:00 2001 From: zenobit Date: Sun, 23 Mar 2025 14:31:19 +0100 Subject: [PATCH] fix dw list --- .github/workflows/dw.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dw.yml b/.github/workflows/dw.yml index e98f8ab..1d5ea0f 100644 --- a/.github/workflows/dw.yml +++ b/.github/workflows/dw.yml @@ -19,9 +19,9 @@ jobs: echo "### on DW are:" >> $GITHUB_STEP_SUMMARY cat ISOs.tmp >> $GITHUB_STEP_SUMMARY if [ -f ISOs.list ]; then - cat ISOs.list >> ISOs.tmp + cat ISOs.list | column --table >> ISOs.tmp fi - sort -u ISOs.tmp -o ISOs.list + cat ISOs.tmp | column --table | sort -u -o ISOs.list - name: Git Config run: |