From d4bda6f3deeda56ce175d640afc6b3b5def5dbba Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sun, 26 Feb 2023 12:25:51 +0100 Subject: [PATCH] ci: inspect and check manifest after publishing docker images --- .github/workflows/build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b2e037d3b..fd28646aa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -161,3 +161,14 @@ jobs: push: ${{ github.event_name == 'release' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} + + - name: Check manifest + if: github.event_name == 'release' + run: | + docker buildx imagetools inspect ${{ github.event.repository.full_name }}:${{ steps.meta.outputs.version }} + + - name: Inspect image + if: github.event_name == 'release' + run: | + docker pull ${{ github.event.repository.full_name }}:${{ steps.meta.outputs.version }} + docker image inspect ${{ github.event.repository.full_name }}:${{ steps.meta.outputs.version }}