From 6dad197ed6e9ab570302a21f023747a91bbbb07a Mon Sep 17 00:00:00 2001 From: Linus Dietz <45101649+Dielee@users.noreply.github.com> Date: Mon, 19 Jun 2023 11:53:53 +0200 Subject: [PATCH] Update build_image.yml --- .github/workflows/build_image.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_image.yml b/.github/workflows/build_image.yml index a5818b5..792b250 100644 --- a/.github/workflows/build_image.yml +++ b/.github/workflows/build_image.yml @@ -44,7 +44,7 @@ jobs: with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Docker meta - id: # you'll use this in the next step + id: meta_id # you'll use this in the next step uses: docker/metadata-action@v3 with: # list of Docker images to use as base name for tags @@ -65,5 +65,5 @@ jobs: context: . platforms: linux/amd64,linux/arm/v7 push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps..outputs.tags }} - labels: ${{ steps..outputs.labels }} + tags: ${{ steps.meta_id.outputs.tags }} + labels: ${{ steps.meta_id.outputs.labels }}