From c9dfe4915224428e69dcc79eca8da2eca0eb9f7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Thu, 29 Feb 2024 10:45:26 +0100 Subject: [PATCH] gha: payload: Fix env var declarations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was introduced by a45988766cface57fb0d78f0f6d0b9ec3dcbf979, but didn't follow the correct format for the env declaration. Fixes: #9064 - part II Signed-off-by: Fabiano FidĂȘncio --- .github/workflows/payload-after-push.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/payload-after-push.yaml b/.github/workflows/payload-after-push.yaml index 19b3bd9d6e..9c63bf9a09 100644 --- a/.github/workflows/payload-after-push.yaml +++ b/.github/workflows/payload-after-push.yaml @@ -103,5 +103,5 @@ jobs: run: | ./tools/packaging/release/release.sh publish-multiarch-manifest env: - KATA_DEPLOY_IMAGE_TAGS="kata-containers-latest" - KATA_DEPLOY_REGISTRIES="quay.io/kata-containers/kata-deploy-ci" + KATA_DEPLOY_IMAGE_TAGS: "kata-containers-latest" + KATA_DEPLOY_REGISTRIES: "quay.io/kata-containers/kata-deploy-ci"