From 76f4588f252e27db67a7a943dcd13dc0c6a06d8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Tue, 17 Aug 2021 13:12:56 +0200 Subject: [PATCH] workflows: Actually push the release to quay.io MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As quay.io is becoming our de-facto image registry, let's actually push the kata-deploy release to it. This commit should've been part of 9fa1febfd9e6372fc1fd9ec3416082182c2f8c21 but ended up slipping out. Fixes: #2306 Signed-off-by: Fabiano FidĂȘncio --- .github/workflows/release.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1c5000e5d5..956a30fc28 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -101,7 +101,9 @@ jobs: # tag the container image we created and push to DockerHub tag=$(echo $GITHUB_REF | cut -d/ -f3-) docker tag katadocker/kata-deploy-ci:${{steps.build-and-push-kata-deploy-ci.outputs.PKG_SHA}} katadocker/kata-deploy:${tag} + docker tag quay.io/kata-containers/kata-deploy-ci:${{steps.build-and-push-kata-deploy-ci.outputs.PKG_SHA}} quay.io/kata-containers/kata-deploy:${tag} docker push katadocker/kata-deploy:${tag} + docker push quay.io/kata-containers/kata-deploy:${tag} upload-static-tarball: needs: kata-deploy