Skip to content

Commit

Permalink
fix hardcoded rapids ver
Browse files Browse the repository at this point in the history
  • Loading branch information
AyodeAwe committed Mar 7, 2024
1 parent 4b93681 commit 4b61a69
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release-to-ngc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,11 @@ jobs:
CUDA_VER=${{ matrix.CUDA_VER }}
CUDA_VER_SHORT=${CUDA_VER%.*}
PYTHON_VER=${{ matrix.PYTHON_VER }}
RAPIDS_VER=24.02
for type in base notebooks; do
source="rapidsai/$type:24.02-cuda$CUDA_VER_SHORT-py$PYTHON_VER"
target="nvcr.io/nvidia/rapidsai/$type:23.08-cuda$CUDA_VER_SHORT-py$PYTHON_VER"
source="rapidsai/$type:$RAPIDS_VER-cuda$CUDA_VER_SHORT-py$PYTHON_VER"
target="nvcr.io/nvidia/rapidsai/$type:$RAPIDS_VER-cuda$CUDA_VER_SHORT-py$PYTHON_VER"
echo "$source => $target"
docker run -v ~/.docker/config.json:/config.json quay.io/skopeo/stable:latest copy --multi-arch all --dest-authfile=/config.json docker://$source docker://$target
done

0 comments on commit 4b61a69

Please sign in to comment.