diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 37f848b..ffddcea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,8 +28,8 @@ jobs: IFS=',' read -r -a platform_array <<< "$platforms" for image in "${image_array[@]}"; do for platform in "${platform_array[@]}"; do - docker pull "${image}:${platform}" - docker save "${image}:${platform}" -o "${image//\//_}-${platform}.tar" + docker pull "${platform}/${image}" + docker save "${platform}/${image}" -o "${image//\//_}-${platform}.tar" done done