File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ jobs:
112
112
first=true
113
113
114
114
# For each version in the matrix config
115
- for row in $(echo '${{ needs.prepare.outputs.matrix_config }}' | jq -c '.include[]'); do
115
+ for row in $(echo '${{ needs.prepare.outputs.matrix_config }}' | jq -rc '.include[]'); do
116
116
version=$(echo $row | jq -r '.version')
117
117
118
118
if [ "$first" = true ]; then
@@ -129,15 +129,14 @@ jobs:
129
129
PG_VERSION=$(nix run nixpkgs#yq -- '.postgres_release["postgres'$version'"]' ansible/vars.yml)
130
130
fi
131
131
PG_VERSION=$(echo $PG_VERSION | tr -d '"')
132
-
132
+
133
133
versions_array+="\"$version\""
134
134
tags_array+="\"supabase/postgres:$PG_VERSION\""
135
135
done
136
136
137
137
versions_array+="]"
138
138
tags_array+="]"
139
139
140
- # Set outputs
141
140
echo "versions=$versions_array" >> $GITHUB_OUTPUT
142
141
echo "image_tags=$tags_array" >> $GITHUB_OUTPUT
143
142
You can’t perform that action at this time.
0 commit comments