We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6481803 commit 775a8afCopy full SHA for 775a8af
.github/workflows/_get-image-list.yml
@@ -45,7 +45,7 @@ jobs:
45
docker_compose_yml=${{ github.workspace }}/.github/workflows/docker/compose/${service}-compose.yaml
46
if [ -f "$docker_compose_yml" ]; then
47
build_list=$(bash ${{ github.workspace }}/.github/workflows/scripts/get_cicd_list.sh "${{ inputs.mode }}" $docker_compose_yml)
48
- image_list=$(echo $build_list| jq -R 'split(",")' | jq -s 'add')
+ image_list=$(echo ${image_list} | jq -s '.[0] + .[1] | unique' - <(echo ${build_list}))
49
fi
50
done
51
0 commit comments