From b473d8859012710dcc59c29747543cbd810bcd2d Mon Sep 17 00:00:00 2001 From: ajfriend Date: Sat, 13 Apr 2024 21:32:48 -0700 Subject: [PATCH] SDist doesn't need a strategy matrix --- .github/workflows/wheels.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index b8d0f9f4..00175300 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -19,13 +19,8 @@ on: jobs: make_sdist: - name: 'SDist: ${{ matrix.os }}' if: ${{ github.event_name != 'pull_request' || !github.event.pull_request.draft }} - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-22.04] # TODO: we only need sdist on one os, no need for matrix + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4.1.1