Skip to content

Commit a65ac85

Browse files
committed
.github/workflows/dist.yml: Upload wheels also when some archs fail to build
1 parent b712e6f commit a65ac85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ jobs:
360360
# https://github.com/pypa/gh-action-pypi-publish
361361
name: Upload to PyPI
362362
needs: [build_wheels, build_wheels_windows]
363-
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
363+
if: (success() || failure()) && github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
364364
runs-on: ubuntu-latest
365365
env:
366366
CAN_DEPLOY: ${{ secrets.SAGEMATH_PYPI_API_TOKEN != '' }}

0 commit comments

Comments
 (0)