Yeuoly il y a 1 an
Parent
commit
e3298fb5cc
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      .github/workflows/build.yml

+ 2 - 1
.github/workflows/build.yml

@@ -64,7 +64,8 @@ jobs:
       - name: Tag Docker Images
         run: 
           tags=$(echo ${{ steps.meta.outputs.tags }} | tr ',' '\n')
-          for tag in $tags; do
+          IFS=$'\n' read -r -d '' -a tags_array <<< "$tags"
+          for tag in "${tags_array[@]}"; do
             docker tag dify-sandbox $tag-${{ inputs.arch }}
           done