From 2b251b8f68f6ff786abfd721b42e732de7cd468e Mon Sep 17 00:00:00 2001 From: Wouter de Bruijn Date: Thu, 12 Feb 2026 16:30:54 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Changed=20build=20to=20only=20ru?= =?UTF-8?q?n=20once=20for=20Python=203.12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-package.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-package.yml b/.github/workflows/build-package.yml index 1bb3d20..f1e1961 100644 --- a/.github/workflows/build-package.yml +++ b/.github/workflows/build-package.yml @@ -25,9 +25,7 @@ jobs: name: Build Distribution runs-on: ubuntu-latest needs: [quality, test] - strategy: - matrix: - python-version: ["3.12", "3.13"] + steps: - name: Checkout code uses: actions/checkout@v4 @@ -38,8 +36,8 @@ jobs: enable-cache: true cache-dependency-glob: "pyproject.toml" - - name: Set up Python ${{ matrix.python-version }} - run: uv python install ${{ matrix.python-version }} + - name: Set up Python 3.12 + run: uv python install 3.12 - name: Install dependencies run: uv sync --dev @@ -50,7 +48,7 @@ jobs: - name: Upload build artifacts uses: actions/upload-artifact@v4 with: - name: dist-python-${{ matrix.python-version }} + name: dist-python-3.12 path: dist/ retention-days: 30 if-no-files-found: error