From 86a03db0a95e8b8ec146202862bc362ff22b67c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B3n=20Bjarni=20Bjarnason?= Date: Wed, 12 Jun 2024 09:01:20 +0000 Subject: [PATCH] fix meta when pushing image --- .github/workflows/tfc-runtime.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tfc-runtime.yml b/.github/workflows/tfc-runtime.yml index 57ee1fe5c6..d3329f6a3c 100644 --- a/.github/workflows/tfc-runtime.yml +++ b/.github/workflows/tfc-runtime.yml @@ -54,8 +54,8 @@ jobs: with: context: ./containers/tfc-runtime push: ${{ github.ref == 'refs/heads/main' }} - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} + tags: ${{ steps.meta-tfc-runtime.outputs.tags }} + labels: ${{ steps.meta-tfc-runtime.outputs.labels }} file: ./containers/tfc-runtime/tfc-runtime.dockerfile - name: Extract metadata (tags, labels) for tfc-dart-sdk @@ -81,6 +81,6 @@ jobs: with: context: ./containers/tfc-dart-sdk push: ${{ github.ref == 'refs/heads/main' }} - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} + tags: ${{ steps.meta-tfc-dart-sdk.outputs.tags }} + labels: ${{ steps.meta-tfc-dart-sdk.outputs.labels }} file: ./containers/tfc-dart-sdk/tfc-dart-sdk.dockerfile