Skip to content

Commit

Permalink
Set secret names
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass committed Mar 18, 2024
1 parent 5d8fb28 commit a6a573d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/checks-and-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ jobs:
PUBLISH: "${{ inputs.publish }}"
steps:
- uses: actions/checkout@v4
- name: Set Proper Conda Upload Token
run: |
RAPIDS_CONDA_TOKEN=${{ secrets.CONDA_RAPIDSAI_NIGHTLY_TOKEN }}
if rapids-is-release-build; then
RAPIDS_CONDA_TOKEN=${{ secrets.CONDA_RAPIDSAI_TOKEN }}
fi
echo "RAPIDS_CONDA_TOKEN=${RAPIDS_CONDA_TOKEN}" >> "${GITHUB_ENV}"
- name: Python build
run: "./ci/build_python.sh ${PUBLISH}"
wheel-build:
Expand All @@ -38,6 +45,7 @@ jobs:
image: rapidsai/ci-wheel:latest
env:
PUBLISH: "${{ inputs.publish }}"
RAPIDS_CONDA_TOKEN: ${{ secrets.CONDA_RAPIDSAI_WHEELS_NIGHTLY_TOKEN }}
steps:
- name: checkout code repo
uses: actions/checkout@v4
Expand Down

0 comments on commit a6a573d

Please sign in to comment.