Skip to content

Commit

Permalink
few mods
Browse files Browse the repository at this point in the history
  • Loading branch information
AyodeAwe committed Mar 7, 2024
1 parent 57e9c47 commit 036553e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release-to-ngc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
id: generate-matrix
run: |
#!/bin/bash
matrix=$(yq 'del(.DASK_SQL_VER)' matrix.yaml | yq -o json)
echo "matrix=$matrix" >> $GITHUB_OUTPUT
matrix=$(yq 'del(.DASK_SQL_VER)' matrix.yaml | yq -o json | jq -c)
echo "matrix=${matrix}" | tee -a ${GITHUB_OUTPUT}
copy-images:
name: Copy (${{ matrix.CUDA_VER }}, ${{ matrix.PYTHON_VER }})
Expand Down Expand Up @@ -51,11 +51,12 @@ jobs:
set -e
CUDA_VER=${{ matrix.CUDA_VER }}
CUDA_VER_SHORT=${CUDA_VER%.*}
PYTHON_VER=${{ matrix.PYTHON_VER }}
for type in base notebooks; do
source="rapidsai/$type:24.02-cuda$CUDA_VER-py$PYTHON_VER"
target="nvcr.io/nvidia/rapidsai/$type:23.08-cuda$CUDA_VER-py$PYTHON_VER"
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"
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 036553e

Please sign in to comment.