File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -214,16 +214,18 @@ jobs:
214
214
image_tag : ${{ fromJson(needs.build.outputs.image_tags) }}
215
215
runs-on : ubuntu-latest
216
216
outputs :
217
- version : ${{ steps.get_version.outputs.publish_version }}
217
+ version : ${{ steps.get_version.outputs.version }}
218
218
steps :
219
219
- id : get_version
220
220
run : |
221
221
VERSION=$(echo "${{ matrix.image_tag }}" | sed 's|supabase/postgres:||')
222
- echo "publish_version=$VERSION" >> $GITHUB_OUTPUT
222
+ # Changed to match the output name expected by the publish job
223
+ echo "Extracted version: $VERSION"
224
+ echo "version=$VERSION" >> $GITHUB_OUTPUT
223
225
224
226
publish :
225
227
needs : get_publish_version
226
228
uses : ./.github/workflows/mirror.yml
227
229
with :
228
- version : ${{ needs.get_version .outputs.publish_version }}
230
+ version : ${{ needs.get_publish_version .outputs.version }}
229
231
secrets : inherit
You can’t perform that action at this time.
0 commit comments