From 20ed482b11c6d8f1a4b0a650175f59f574f1f757 Mon Sep 17 00:00:00 2001 From: Andrew Azores Date: Thu, 15 Jun 2023 13:38:16 -0400 Subject: [PATCH] ci(manifest): correct 'podman manifest create' invocation (#1556) --- .github/workflows/push-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push-ci.yml b/.github/workflows/push-ci.yml index 987e4578b1..11611239b1 100644 --- a/.github/workflows/push-ci.yml +++ b/.github/workflows/push-ci.yml @@ -58,7 +58,7 @@ jobs: env: IMAGE_VERSION: ${{ needs.build-and-test-amd64.outputs.image-version }} run: | - podman create manifest $CRYOSTAT_IMG:$IMAGE_VERSION $CRYOSTAT_IMG:$IMAGE_VERSION-linux-amd64 $CRYOSTAT_IMG:$IMAGE_VERSION-linux-arm64 + podman manifest create $CRYOSTAT_IMG:$IMAGE_VERSION $CRYOSTAT_IMG:$IMAGE_VERSION-linux-amd64 $CRYOSTAT_IMG:$IMAGE_VERSION-linux-arm64 if [ "$GITHUB_REF" == "refs/heads/main" ]; then podman tag \ ${{ env.CRYOSTAT_IMG }}:$IMAGE_VERSION \