test: Add the repodigest to see if it's different

This commit is contained in:
Alexis Métaireau 2024-11-27 16:57:35 +01:00
parent 41afa0fb23
commit e958170032
No known key found for this signature in database
GPG key ID: C65C7A89A8FFC56E

View file

@ -40,15 +40,16 @@ jobs:
sudo apt-get install -y python3-poetry
python3 ./install/common/build-image.py
echo ${{ github.token }} | podman login ghcr.io -u USERNAME --password-stdin
# Load the image with the final name directly
gunzip -c share/container.tar.gz | podman load
FINAL_IMAGE_NAME="${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}"
podman tag dangerzone.rocks/dangerzone "$FINAL_IMAGE_NAME"
podman push "$FINAL_IMAGE_NAME"
# Get digest of the pushed image using the final name
DIGEST=$(podman inspect --format='{{.Digest}}' "$FINAL_IMAGE_NAME")
podman inspect --format='Repo Digest: {{index .RepoDigests 0}}' "$FINAL_IMAGE_NAME"
echo "Digest: ${DIGEST}"
echo "digest=${DIGEST}" >> "$GITHUB_OUTPUT"