From 3a25c15349456ae56f34272e6c34f42f73e6bf3f Mon Sep 17 00:00:00 2001 From: Josh W Lewis Date: Mon, 5 Aug 2024 17:46:00 -0500 Subject: [PATCH] Push created manifest --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 263f53d0..0b62f593 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,6 +114,7 @@ jobs: armTag="heroku/heroku:${{ matrix.stack-version }}${variant}_linux-arm64${TAG_SUFFIX}" amdTag="heroku/heroku:${{ matrix.stack-version }}${variant}_linux-amd64${TAG_SUFFIX}" docker manifest create "$indexTag" "$amdTag" "$armTag" + docker push "$indexTag" done promote-images: @@ -145,10 +146,10 @@ jobs: for variant in '' '-build' '-cnb' '-cnb-build'; do destTags+=("heroku/heroku:${{ matrix.stack-version }}${variant}") done - end + fi for destTag in "${destTags[@]}"; do sourceTag="${destTag}.${{ github.ref_name }}" - crane copy "${sourceTag}" "${destTag}" + echo "${sourceTag}" "${destTag}" done promote-stack: