From 357ae923dd2533e5c93d76648219a9fc657e0f8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 28 Apr 2025 14:33:13 +0200 Subject: [PATCH] CI: Fixup for tar creation, it was missing a dot --- .github/workflows/build-push-image.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-push-image.yml b/.github/workflows/build-push-image.yml index 622243f..0adb5e8 100644 --- a/.github/workflows/build-push-image.yml +++ b/.github/workflows/build-push-image.yml @@ -317,9 +317,9 @@ jobs: # It contains the image and the signatures run: |- export IMAGE_URI="${{ inputs.registry }}/${{ inputs.image_name }}:${{ needs.merge.outputs.tag }}@${{ needs.merge.outputs.digest_root }}" - cosign save $IMAGE_URI --dir tmp - cd tmp - tar -cvf ../share/container.tar + cosign save $IMAGE_URI --dir dz-container + cd dz-container + tar -cvf ../share/container.tar . cd .. - name: Cache container image