Test building by digest #8
Some checks failed
Build Docker Image / Create Multi-arch Manifest (3.10) (push) Blocked by required conditions
Build Docker Image / Build ARM64 (3.10) (push) Has been cancelled

This commit is contained in:
2024-12-10 21:17:34 +02:00
parent ba9e828985
commit a6d59cdfeb

View File

@@ -121,16 +121,4 @@ jobs:
- name: Create and Push Multi-arch Manifest - name: Create and Push Multi-arch Manifest
run: | run: |
echo "LOL" echo "LOL Privet from nginx unit"
IMAGE_NAME=gitea.technocloud.ee/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:python${{ matrix.python-version }}
AMD64_DIGEST=${{ needs.build-amd64.outputs['amd64-digest-' + matrix.python-version] }}
ARM64_DIGEST=${{ needs.build-arm64.outputs['arm64-digest-' + matrix.python-version] }}
echo $AMD64_DIGEST
echo $ARM64_DIGEST
# Create the manifest
docker manifest create $IMAGE_NAME \
--amend gitea.technocloud.ee/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}@$AMD64_DIGEST \
--amend gitea.technocloud.ee/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}@$ARM64_DIGEST
# Push the manifest
docker manifest push $IMAGE_NAME