From 1ef3ef04f01a383111fc9b9b7644459a9ff0d452 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Fri, 2 Feb 2024 15:28:20 +0100 Subject: [PATCH] =?UTF-8?q?.g=C3=ADthub:=20swap=20order=20of=20oci=20and?= =?UTF-8?q?=20$arch=20in=20directory=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Joachim Wiberg --- .github/workflows/build-push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-push.yml b/.github/workflows/build-push.yml index 7ce00dc..173bf48 100644 --- a/.github/workflows/build-push.yml +++ b/.github/workflows/build-push.yml @@ -120,8 +120,8 @@ jobs: SFX=${{ steps.vars.outputs.sfx }} URL=ghcr.io/${{ github.repository_owner }}/${IMG} buildah manifest create ${IMG} - buildah manifest add ${IMG} oci:${IMG}-amd64-oci${SFX} - buildah manifest add ${IMG} oci:${IMG}-arm64-oci${SFX} + buildah manifest add ${IMG} oci:${IMG}-oci-amd64${SFX} + buildah manifest add ${IMG} oci:${IMG}-oci-arm64${SFX} buildah manifest push --all -f oci ${IMG} docker://${URL}:${TAG} - uses: ncipollo/release-action@v1 with: