From 76352e18eafccbce3744f66dff0e41929bb23a7c Mon Sep 17 00:00:00 2001 From: Jimisola Laursen Date: Mon, 30 Sep 2024 19:14:41 +0200 Subject: [PATCH] fix: debugging github workflows --- .github/workflows/publish-containers.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-containers.yml b/.github/workflows/publish-containers.yml index ab2d0fa..1670177 100644 --- a/.github/workflows/publish-containers.yml +++ b/.github/workflows/publish-containers.yml @@ -70,7 +70,7 @@ jobs: annotations: ${{ steps.meta.outputs.annotations }} provenance: mode=max sbom: true - outputs: type=image,name=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }},push-by-digest=true,name-canonical=true,"annotation-index.org.opencontainers.image.description=Container image that contains unoserver and LibreOffice incl a large set of fonts for file format conversions" + outputs: type=image,name=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }},push-by-digest=true,name-canonical=true,annotation-index.org.opencontainers.image.description="Container image that contains unoserver and LibreOffice including a large set of fonts for file format conversions" env: DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest,index @@ -135,9 +135,9 @@ jobs: ACTIONS_STEP_DEBUG: true # set -ex run: | - echo $DOCKER_METADATA_OUTPUT_JSON | jq - echo $DOCKER_METADATA_OUTPUT_JSON | sed 's/\\"//g'|jq - export DOCKER_METADATA_OUTPUT_JSON=$(echo $DOCKER_METADATA_OUTPUT_JSON | sed 's/\\"//g'|jq) + # echo $DOCKER_METADATA_OUTPUT_JSON | jq + # echo $DOCKER_METADATA_OUTPUT_JSON | sed 's/\\"//g'|jq + # export DOCKER_METADATA_OUTPUT_JSON=$(echo $DOCKER_METADATA_OUTPUT_JSON | sed 's/\\"//g'|jq) docker buildx imagetools create \ $(echo $DOCKER_METADATA_OUTPUT_JSON | jq -cr '.tags | map("-t " + .) | join(" ")') \ $(echo $DOCKER_METADATA_OUTPUT_JSON | jq -cr '.annotations | map("--annotation \"" + . + "\"") | join(" ")') \