From 616585ee5a42d8328cb0c41ea26cc85b5c68abc9 Mon Sep 17 00:00:00 2001 From: wukongdaily <143675923+wukongdaily@users.noreply.github.com> Date: Sat, 15 Jun 2024 18:30:01 +0800 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 12fd79f..83e36b5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: IFS=',' read -r -a platform_array <<< "$platforms" for image in "${image_array[@]}"; do for platform in "${platform_array[@]}"; do - docker pull ${image} --platform ${platform} + docker pull "${image}" --platform "${platform}" docker save "${image}" -o "${image//\//_}-${platform}.tar" done done