From aaed3ad2c9913be9ee568d44969d734862d03e65 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 27 Jun 2026 15:59:35 -0400 Subject: [PATCH] continue-on-error for upload-release-assets to handle already_exists on re-runs When re-running the wheel build, wheels already uploaded to the GitHub release cause upload-release-assets to fail with already_exists. With continue-on-error, the attestation and PyPI upload steps still proceed since the wheel files remain in ./wheelhouse/ regardless. Change-Id: Id2ba96e95dd93b3ba14e9bf117a5d1a057178f37 --- .github/workflows/create-wheels.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/create-wheels.yaml b/.github/workflows/create-wheels.yaml index e54c6eceb7..87783b0409 100644 --- a/.github/workflows/create-wheels.yaml +++ b/.github/workflows/create-wheels.yaml @@ -122,6 +122,7 @@ jobs: - name: Upload wheels to release # upload the generated wheels to the github release + continue-on-error: true uses: sqlalchemyorg/upload-release-assets@sa with: repo-token: ${{ secrets.GITHUB_TOKEN }} -- 2.47.3