mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-07-06 22:06:11 +02:00
fix issue with bash script for manifests
This commit is contained in:
parent
5c3a14202d
commit
09a16c7fbe
1 changed files with 4 additions and 3 deletions
7
.github/workflows/publish-image.yml
vendored
7
.github/workflows/publish-image.yml
vendored
|
@ -254,9 +254,10 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
IMAGES_LIST=($IMAGES)
|
IMAGES_LIST=($IMAGES)
|
||||||
for REPO in "${IMAGES_LIST[@]}"; do
|
for REPO in "${IMAGES_LIST[@]}"; do
|
||||||
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
docker buildx imagetools create \
|
||||||
$(printf -- "--annotation \"%s\" " "${DOCKER_METADATA_OUTPUT_ANNOTATIONS[@]}") \
|
$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
|
||||||
$(printf "$REPO@sha256:%s " *)
|
$(printf -- " --annotation %q" "${DOCKER_METADATA_OUTPUT_ANNOTATIONS[@]}") \
|
||||||
|
$(printf "$REPO@sha256:%s " *)
|
||||||
done
|
done
|
||||||
|
|
||||||
- name: Inspect image
|
- name: Inspect image
|
||||||
|
|
Loading…
Add table
Reference in a new issue