From 98ffe409a5dea5b8873abd31a67b530de76eb907 Mon Sep 17 00:00:00 2001 From: Yuriy Liskov Date: Wed, 17 Dec 2025 06:24:23 +0200 Subject: [PATCH] virus total workflow: don't create report on empty releases --- .github/workflows/virustotal_scan.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/virustotal_scan.yml b/.github/workflows/virustotal_scan.yml index 34a489b7a..0315b8dbd 100644 --- a/.github/workflows/virustotal_scan.yml +++ b/.github/workflows/virustotal_scan.yml @@ -38,7 +38,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | mkdir -p release_assets - gh release download $TAG_NAME --dir release_assets --pattern "*.apk" + gh release download $TAG_NAME --dir release_assets --pattern "*.apk" || true ls -l release_assets - name: Install VirusTotal CLI