From 114b226d4116fcec431df7d26beed6ddef26448f Mon Sep 17 00:00:00 2001 From: zenobit Date: Tue, 11 Mar 2025 20:13:38 +0100 Subject: [PATCH] Update dw.yml --- .github/workflows/dw.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dw.yml b/.github/workflows/dw.yml index 0037586..e98f8ab 100644 --- a/.github/workflows/dw.yml +++ b/.github/workflows/dw.yml @@ -16,9 +16,12 @@ jobs: - name: Get latest ISOs links run: | curl -s https://distrowatch.com | grep 'News".*\.iso' | awk -F'"' '{print $4, $6}' | column --table > ISOs.tmp - sort -u ISOs.tmp -o ISOs.list - echo "on DW are:" >> $GITHUB_STEP_SUMMARY + echo "### on DW are:" >> $GITHUB_STEP_SUMMARY cat ISOs.tmp >> $GITHUB_STEP_SUMMARY + if [ -f ISOs.list ]; then + cat ISOs.list >> ISOs.tmp + fi + sort -u ISOs.tmp -o ISOs.list - name: Git Config run: |