lowercase registry

This commit is contained in:
ThePhaseless 2025-02-28 19:01:06 +01:00
parent b9a44b60b6
commit 9a1d0ef218

View File

@ -179,6 +179,9 @@ jobs:
TAGS="${{ steps.meta.outputs.tags }}"
args=""
image=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{github.sha}}
image=${image,,}
# Create tag arguments
for tag in $TAGS; do
args="$args -t $tag"
@ -191,8 +194,8 @@ jobs:
echo $args
docker buildx imagetools create $args \
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{github.sha}}-amd64 \
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{github.sha}}-arm64
${image}-amd64 \
${image}-arm64
# Sign the manifest
- name: Sign the manifests