Skip to content

Commit 736eb02

Browse files
committed
fix
1 parent 7b5ba80 commit 736eb02

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/build-image.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,8 @@ jobs:
106106

107107
- name: Display image labels
108108
run: |
109-
echo "=============================================="
110-
echo " CONTAINER IMAGE LABELS "
111-
echo "=============================================="
109+
IMAGE=$(echo "${{ steps.meta.outputs.tags }}" | head -1)
110+
echo "Image: $IMAGE"
112111
echo ""
113112
114-
docker inspect "$IMAGE_TAG" --format='{{json .Config.Labels}}' | jq '.'
113+
docker inspect "$IMAGE" --format='{{json .Config.Labels}}' | jq '.'

0 commit comments

Comments
 (0)