Skip to content
Merged
Changes from all 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
18 changes: 17 additions & 1 deletion .github/workflows/wheels-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,24 @@ jobs:
name: wheel
path: ${{ env.wheel_path }}

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