Skip to content

Commit 2c94c9c

Browse files
committed
fix: tryo to pass the version
1 parent 94c32a5 commit 2c94c9c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/dockerhub-release-matrix.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,16 +214,18 @@ jobs:
214214
image_tag: ${{ fromJson(needs.build.outputs.image_tags) }}
215215
runs-on: ubuntu-latest
216216
outputs:
217-
version: ${{ steps.get_version.outputs.publish_version }}
217+
version: ${{ steps.get_version.outputs.version }}
218218
steps:
219219
- id: get_version
220220
run: |
221221
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
223225
224226
publish:
225227
needs: get_publish_version
226228
uses: ./.github/workflows/mirror.yml
227229
with:
228-
version: ${{ needs.get_version.outputs.publish_version }}
230+
version: ${{ needs.get_publish_version.outputs.version }}
229231
secrets: inherit

0 commit comments

Comments
 (0)