Skip to content
Closed
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .github/workflows/conda-upload-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,11 @@ jobs:
fi
echo "RAPIDS_CONDA_TOKEN=${RAPIDS_CONDA_TOKEN}" >> "${GITHUB_ENV}"
- name: Upload packages
run: rapids-upload-to-anaconda
run: rapids-upload-to-anaconda-github
env:
SKIP_UPLOAD_PKGS: ${{ inputs.skip_upload_pkgs }}
RAPIDS_CONDA_UPLOAD_LABEL: ${{ inputs.upload_to_label }}
GH_TOKEN: ${{ github.token }}
- name: Telemetry upload attributes
uses: rapidsai/shared-actions/telemetry-dispatch-stash-job-artifacts@main
continue-on-error: true
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/wheels-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,11 @@ jobs:
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}

- name: Download wheels from downloads.rapids.ai and publish to anaconda repository
run: rapids-wheels-anaconda "${{ inputs.package-name }}" "${{ inputs.package-type }}"
- name: Download wheels from Github Artifacts and publish to anaconda repository
run: rapids-wheels-anaconda-github "${{ inputs.package-name }}" "${{ inputs.package-type }}"
env:
RAPIDS_CONDA_TOKEN: ${{ secrets.CONDA_RAPIDSAI_WHEELS_NIGHTLY_TOKEN }}
GH_TOKEN: ${{ github.token }}

- name: Check if build is release
id: check_if_release
Expand Down