Skip to content

Commit

Permalink
ci(pytest): inputs.cache_imgs to array
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Oct 22, 2023
1 parent 9ec6cee commit 99dd6cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/r-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ jobs:
# Make artifact dir
mkdir -p /tmp/images
images_array=${{ inputs.cache_imgs }}
images_array=(${{ inputs.cache_imgs }})
echo "Images to cache: ${images_array}"
# Iterate through dependency images
for image in "${images_array[@]}"; do
Expand Down

0 comments on commit 99dd6cb

Please sign in to comment.