File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ jobs:
185
185
strategy :
186
186
matrix :
187
187
image_tag : ${{ fromJson(needs.build.outputs.image_tags) }}
188
+ version : ${{ fromJson(needs.build.outputs.versions) }}
188
189
runs-on : ubuntu-latest
189
190
steps :
190
191
- uses : docker/setup-buildx-action@v3
@@ -211,17 +212,14 @@ jobs:
211
212
needs : [build, merge_manifest]
212
213
strategy :
213
214
matrix :
214
- image_tag : ${{ fromJson(needs.build.outputs.image_tags ) }}
215
+ version : ${{ fromJson(needs.build.outputs.versions ) }}
215
216
runs-on : ubuntu-latest
216
217
outputs :
217
218
version : ${{ steps.get_version.outputs.version }}
218
219
steps :
219
220
- id : get_version
220
221
run : |
221
- VERSION=$(echo "${{ matrix.image_tag }}" | sed 's|supabase/postgres:||')
222
- # Changed to match the output name expected by the publish job
223
- echo "Extracted version: $VERSION"
224
- echo "version=$VERSION" >> $GITHUB_OUTPUT
222
+ echo "version=${{ matrix.version }}" >> $GITHUB_OUTPUT
225
223
226
224
publish :
227
225
needs : get_publish_version
You can’t perform that action at this time.
0 commit comments