From 2c94c9c0d0a0c7b440488ee1d763a59969d61c20 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Tue, 17 Dec 2024 10:54:40 -0500 Subject: [PATCH] fix: tryo to pass the version --- .github/workflows/dockerhub-release-matrix.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dockerhub-release-matrix.yml b/.github/workflows/dockerhub-release-matrix.yml index 9a5a3a42e..725d07f88 100644 --- a/.github/workflows/dockerhub-release-matrix.yml +++ b/.github/workflows/dockerhub-release-matrix.yml @@ -214,16 +214,18 @@ jobs: image_tag: ${{ fromJson(needs.build.outputs.image_tags) }} runs-on: ubuntu-latest outputs: - version: ${{ steps.get_version.outputs.publish_version }} + version: ${{ steps.get_version.outputs.version }} steps: - id: get_version run: | VERSION=$(echo "${{ matrix.image_tag }}" | sed 's|supabase/postgres:||') - echo "publish_version=$VERSION" >> $GITHUB_OUTPUT + # Changed to match the output name expected by the publish job + echo "Extracted version: $VERSION" + echo "version=$VERSION" >> $GITHUB_OUTPUT publish: needs: get_publish_version uses: ./.github/workflows/mirror.yml with: - version: ${{ needs.get_version.outputs.publish_version }} + version: ${{ needs.get_publish_version.outputs.version }} secrets: inherit