From 4fb0b78a5f0ec7ea30a8835759519c6979adfeb6 Mon Sep 17 00:00:00 2001 From: BillTheMaker Date: Sat, 6 Dec 2025 19:35:49 -0700 Subject: [PATCH] Refactor publish job in GitHub Actions workflow Removed conditional checks and dependencies in the publish job. --- .github/workflows/publish.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f9625ac..67db034 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,8 +10,6 @@ jobs: build_wheels: name: Build wheels on ${{ matrix.os }} runs-on: ${{ matrix.os }} - # SPEED FIX: Skip on manual dispatch (use artifacts) - if: github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/') strategy: matrix: include: @@ -50,9 +48,8 @@ jobs: publish: name: Publish to PyPI - needs: [build_wheels] runs-on: ubuntu-latest - # REMOVED problematic if condition + # NO NEEDS, NO IF - INDEPENDENT steps: - name: Install maturin for upload