From 34c47accbdc8aaebc751bbe8b802d1b7bcddfab7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Pe=C4=8Dovnik?= Date: Sat, 25 Dec 2021 01:05:31 +0100 Subject: [PATCH] Update update-repository.yml --- .github/workflows/update-repository.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-repository.yml b/.github/workflows/update-repository.yml index 0b4aae9b..061a32dd 100644 --- a/.github/workflows/update-repository.yml +++ b/.github/workflows/update-repository.yml @@ -29,17 +29,17 @@ jobs: - name: Remove previous artefacts if any run: | - sudo rm -rf changes.txt 2>/dev/null || true + sudo rm -rf changes 2>/dev/null || true - name: Download changes uses: actions/download-artifact@v2 with: - path: changes.txt name: changes - name: Check run: | - [ ! -s changes.txt ] || echo "SKIP=yes" >> $GITHUB_ENV + + [ -s changes ] || echo "SKIP=yes" >> $GITHUB_ENV - name: Install SSH key for repository if: ${{ env.SKIP != 'yes' }}