mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-07-06 12:16:12 +02:00
fix issue with bash script for manifests
This commit is contained in:
parent
7178adba81
commit
af9a6c0c95
1 changed files with 3 additions and 7 deletions
10
.github/workflows/publish-image.yml
vendored
10
.github/workflows/publish-image.yml
vendored
|
@ -257,14 +257,10 @@ jobs:
|
|||
ANNOTATIONS_LIST=($DOCKER_METADATA_OUTPUT_ANNOTATIONS)
|
||||
TAGS_LIST=($DOCKER_METADATA_OUTPUT_TAGS)
|
||||
for REPO in "${IMAGES_LIST[@]}"; do
|
||||
echo docker buildx imagetools create \
|
||||
$(printf -- " --tag %q" "${TAGS_LIST[@]}") \
|
||||
$(printf -- " --annotation %q" "${ANNOTATIONS_LIST[@]}") \
|
||||
$(printf "$REPO@sha256:%s " *)
|
||||
docker buildx imagetools create \
|
||||
$(printf -- " --tag %q" "${TAGS_LIST[@]}") \
|
||||
$(printf -- " --annotation %q" "${ANNOTATIONS_LIST[@]}") \
|
||||
$(printf "$REPO@sha256:%s " *)
|
||||
$(for tag in "${TAGS_LIST[@]}"; do echo "--tag"; echo "$tag"; done) \
|
||||
$(for annotation in "${ANNOTATIONS_LIST[@]}"; do echo "--annotation"; echo "$annotation"; done) \
|
||||
$(for reference in *; do printf "$REPO@sha256:%s" $reference; done)
|
||||
done
|
||||
|
||||
- name: Inspect image
|
||||
|
|
Loading…
Add table
Reference in a new issue