From 2bb56deef6b5b6a0842da3ce61ecce78b4e9d44d Mon Sep 17 00:00:00 2001 From: Tom Kennedy Date: Thu, 24 Aug 2023 15:01:24 -0400 Subject: [PATCH] Fix ci Signed-off-by: Tom Kennedy --- .github/workflows/ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 15e6c38..d2bc835 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -225,7 +225,7 @@ jobs: - name: Promote images id: promote run: | - mkdir final-image-refs + mkdir -p final-image-refs for image in images/*; do dev_image=$(cat $image) digest=$(echo $dev_image| cut -d "@" -f 2) @@ -236,7 +236,8 @@ jobs: crane copy "$dev_image" "$final_repo" echo "${final_repo}@${digest}" > final-image-refs/$name - echo "$name=$(cat final-image-refs/$name)" > $GITHUB_OUTPUT + echo "$name=$(cat final-image-refs/$name)" >> $GITHUB_OUTPUT + done - name: Upload image refs