From 2d53f90229328bf6f32c78d51d743656152bf51e Mon Sep 17 00:00:00 2001 From: Mogyuchi Date: Wed, 21 Aug 2024 22:21:30 +0900 Subject: [PATCH] ci: fix output --- .github/workflows/docker-publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index d2f8a0e7b..1747d0514 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -11,7 +11,7 @@ on: type: string outputs: image_tags: - value: ${{ jobs.docker.outputs.image_tags }} + value: ${{ jobs.image.outputs.image_tags }} image_url: value: https://ghcr.io/${{ github.repository }} @@ -116,6 +116,8 @@ jobs: needs: [env, build] if: ${{ fromJson(needs.env.outputs.PUSH) }} runs-on: ubuntu-latest + outputs: + image_tags: ${{ steps.meta.outputs.tags }} defaults: run: shell: bash -xe {0}