We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77323e2 commit 905379eCopy full SHA for 905379e
.github/workflows/dist.yml
@@ -240,6 +240,20 @@ jobs:
240
name: ${{ matrix.os }}-${{ matrix.arch }}-wheels
241
path: ./wheelhouse/*.whl
242
243
+ upload_wheels:
244
+ # This needs to be a separate job because pypa/gh-action-pypi-publish cannot run on macOS
245
+ needs: build_wheels
246
+ runs-on: ubuntu-latest
247
+ env:
248
+ CAN_DEPLOY: ${{ secrets.SAGEMATH_PYPI_API_TOKEN != '' }}
249
+ steps:
250
+
251
+ - uses: actions/download-artifact@v4
252
+ with:
253
+ pattern: "*-*-wheels"
254
+ path: wheelhouse
255
+ merge-multiple: true
256
257
- uses: pypa/gh-action-pypi-publish@release/v1
258
with:
259
user: __token__
0 commit comments