From fb722e5c06fd0298a1b448633ff8c5cc8f8a96ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Tue, 7 Oct 2025 16:08:18 +0200 Subject: [PATCH] Publish only the signed installers --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cf4a1210..ba870488 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -642,7 +642,8 @@ jobs: - name: Flatten artifacts run: | mkdir -p staging - find artifacts -type f -exec cp {} staging/ \; + # Copy all files except those from unsigned Windows artifact directories + find artifacts -type f ! -path "*/windows-*-unsigned-*/*" -exec cp {} staging/ \; - name: Get version id: version @@ -712,7 +713,8 @@ jobs: - name: Flatten artifacts run: | mkdir -p staging - find artifacts -type f -exec cp {} staging/ \; + # Copy all files except those from unsigned Windows artifact directories + find artifacts -type f ! -path "*/windows-*-unsigned-*/*" -exec cp {} staging/ \; - name: Get version id: version