mirror of
https://github.com/ThePhaseless/Byparr.git
synced 2025-03-15 01:40:21 +08:00
lowercase registry
This commit is contained in:
parent
b9a44b60b6
commit
9a1d0ef218
7
.github/workflows/docker-publish.yml
vendored
7
.github/workflows/docker-publish.yml
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user