Skip to content

Commit

Permalink
fix issue
Browse files Browse the repository at this point in the history
Signed-off-by: chensuyue <[email protected]>
  • Loading branch information
chensuyue committed Nov 21, 2024
1 parent 6481803 commit 775a8af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/_get-image-list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
docker_compose_yml=${{ github.workspace }}/.github/workflows/docker/compose/${service}-compose.yaml
if [ -f "$docker_compose_yml" ]; then
build_list=$(bash ${{ github.workspace }}/.github/workflows/scripts/get_cicd_list.sh "${{ inputs.mode }}" $docker_compose_yml)
image_list=$(echo $build_list| jq -R 'split(",")' | jq -s 'add')
image_list=$(echo ${image_list} | jq -s '.[0] + .[1] | unique' - <(echo ${build_list}))
fi
done
fi
Expand Down

0 comments on commit 775a8af

Please sign in to comment.