From: Mike Bayer Date: Sat, 27 Jun 2026 19:59:35 +0000 (-0400) Subject: continue-on-error for upload-release-assets to handle already_exists on re-runs X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aaed3ad2c9913be9ee568d44969d734862d03e65;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 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 --- 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 }}