From 813663717afaa6950d888b0419a2da02395620fb Mon Sep 17 00:00:00 2001 From: Chao Wang Date: Mon, 8 Sep 2025 09:15:28 +0800 Subject: [PATCH] fix: ensure step Verify ZIP file exists only runs when there's actually something to verify Signed-off-by: Chao Wang --- .github/workflows/publish-marketplace.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish-marketplace.yml b/.github/workflows/publish-marketplace.yml index ea58c1a7..e205f6b8 100644 --- a/.github/workflows/publish-marketplace.yml +++ b/.github/workflows/publish-marketplace.yml @@ -145,6 +145,7 @@ jobs: echo "✅ Downloaded ZIP file successfully" - name: Verify ZIP file exists + if: steps.version_info.outputs.CHANNEL != 'none' run: | ls -la build/distributions/ ZIP_FILE="build/distributions/intellij-dependency-analytics-${{ steps.version_info.outputs.VERSION }}.zip"