From a19fc47e1c8156a3935577294cf713032aa5a851 Mon Sep 17 00:00:00 2001 From: Paul Profizi <100710998+PProfizi@users.noreply.github.com> Date: Fri, 5 Dec 2025 15:29:15 +0100 Subject: [PATCH] ci(post): fix platform detection in pydpf-post test pipeline --- .github/workflows/pydpf-post.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pydpf-post.yml b/.github/workflows/pydpf-post.yml index 71deba2c279..81a77057fd1 100644 --- a/.github/workflows/pydpf-post.yml +++ b/.github/workflows/pydpf-post.yml @@ -77,7 +77,7 @@ jobs: - name: "Build ansys-dpf-core wheel" shell: bash run: | - if [ ${{ matrix.os }} == "ubuntu-latest" ]; then + if [[ ${{ matrix.os }} == *"ubuntu"* ]]; then export platform="manylinux_2_17" else export platform="win"