From 94ed61d264cf6b9e8366d5c20bd68112c22b6d77 Mon Sep 17 00:00:00 2001 From: Matthias Neugebauer Date: Fri, 12 Jul 2024 12:31:31 +0200 Subject: [PATCH] Tmp: install jq --- .github/workflows/container-images.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/container-images.yml b/.github/workflows/container-images.yml index c6571d9..039c9d3 100644 --- a/.github/workflows/container-images.yml +++ b/.github/workflows/container-images.yml @@ -73,6 +73,8 @@ jobs: - name: fetch container image shas id: container-image run: | + sudo apt-get update -y + sudo apt-get install -y jq docker manifest inspect ghcr.io/nagare-media/engine/${{ matrix.image }}:${{ steps.info.outputs.VERSION }} shas=$(docker manifest inspect ghcr.io/nagare-media/engine/${{ matrix.image }}:${{ steps.info.outputs.VERSION }} | jq -r '.manifests.[] | .digest' | paste -s -d ' ' -) echo "SHAS=$shas" | tee -a "$GITHUB_OUTPUT"