This is an automated email from the ASF dual-hosted git repository.

hgruszecki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git


The following commit(s) were added to refs/heads/master by this push:
     new 586c66994 fix(ci): unblock wheel collection when Windows is disabled 
(#2814)
586c66994 is described below

commit 586c66994be5b79b2a7eb1cb76dcc189c972f722
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Wed Feb 25 08:34:56 2026 +0100

    fix(ci): unblock wheel collection when Windows is disabled (#2814)
---
 .github/workflows/_build_python_wheels.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/_build_python_wheels.yml 
b/.github/workflows/_build_python_wheels.yml
index 4bd41bbf2..9d93529b7 100644
--- a/.github/workflows/_build_python_wheels.yml
+++ b/.github/workflows/_build_python_wheels.yml
@@ -237,7 +237,8 @@ jobs:
 
   collect:
     name: Collect all wheels
-    needs: [linux, macos, windows, sdist]
+    needs: [linux, macos, sdist] # TODO(hubcio): add windows back when 
re-enabled
+    if: ${{ !cancelled() }}
     runs-on: ubuntu-latest
     outputs:
       artifact_name: ${{ steps.output.outputs.artifact_name }}

Reply via email to