From a52dd601fa0e64c1128150149fb0900f1d46e264 Mon Sep 17 00:00:00 2001 From: jessekrubin Date: Fri, 20 Dec 2024 13:51:10 -0800 Subject: [PATCH] whoops fix the stupid yaml thing --- .github/workflows/ci.yml | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c2e6cc..25bdcb4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,28 +23,29 @@ jobs: permissions: contents: read packages: write # Required to upload docker images to ghcr + strategy: matrix: - platform: - runner: ubuntu-latest - - target: x86_64 - - manylinux: auto + target: x86_64 + manylinux: auto - runner: ubuntu-latest - - target: x86 - - manylinux: auto + target: x86 + manylinux: auto - runner: ubuntu-latest - - target: aarch64 - - manylinux: "2_28" + target: aarch64 + manylinux: "2_28" - runner: ubuntu-latest - - target: armv7 - - manylinux: auto + target: armv7 + manylinux: auto - runner: ubuntu-latest - - target: s390x - - manylinux: auto + target: s390x + manylinux: auto - runner: ubuntu-latest - - target: ppc64le - - manylinux: auto + target: ppc64le + manylinux: auto + steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5