Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions .github/workflows/wheels-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,23 @@ jobs:
name: wheel
path: ${{ env.wheel_path }}

- name: Publish wheel
if: inputs.upload_to_pypi
uses: pypa/gh-action-pypi-publish@release/v1
# TODO Revert the commit that introduced this TODO
publish:
needs: [build]
runs-on: ubuntu-latest
if: "!cancelled()"
steps:
- name: Download sdist
if: "!cancelled()"
uses: actions/download-artifact@v4
with:
password: ${{ secrets.RAPIDSAI_PYPI_TOKEN }}
name: sdist
path: dist
- name: Download wheel
if: "!cancelled()"
uses: actions/download-artifact@v4
with:
name: wheel
path: dist
- name: Publish wheel
script: ls dist