From 8a8f3ec69a69dc7e3d6aaf6fe5b87b3c64febd0b Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Wed, 2 Nov 2022 19:52:13 +0100 Subject: [PATCH] :green_heart: Fix build docker image workflow --- .github/workflows/publish_docker_images.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish_docker_images.yml b/.github/workflows/publish_docker_images.yml index 5262ddf4c..a233934aa 100644 --- a/.github/workflows/publish_docker_images.yml +++ b/.github/workflows/publish_docker_images.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v3 - name: Extract existing image metadata - id: ${{ matrix.app }}-meta + id: image-meta uses: docker/metadata-action@v4 with: images: baptistearno/typebot-${{ matrix.app }} @@ -41,7 +41,7 @@ jobs: with: context: . push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.builder-meta.outputs.tags }} - labels: ${{ steps.builder-meta.outputs.labels }} + tags: ${{ steps.image-meta.outputs.tags }} + labels: ${{ steps.image-meta.outputs.labels }} build-args: | SCOPE=${{ matrix.app }}