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 }}