From 191b6dd9ddd8ee74a70997c40784f4d95e39797a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Fri, 19 May 2023 16:14:59 +0200 Subject: [PATCH] gha: release: Fix s390x worklow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub is warning us that: """ The workflow is not valid. In .github/workflows/release.yaml (Line: 21, Col: 11): Error from called workflow kata-containers/kata-containers/.github/workflows/release-s390x.yaml@d2e92c9ec993f56537044950a4673e50707369b5 (Line: 14, Col: 12): Job 'kata-deploy' depends on unknown job 'create-kata-tarball'. """ This is happening as we need to reference "build-kata-static-tarball-s390x" instead of "create-kata-tarball". Fixes: #6903 Signed-off-by: Fabiano FidĂȘncio --- .github/workflows/release-s390x.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-s390x.yaml b/.github/workflows/release-s390x.yaml index 2497be7d2c..e9fc5fa7e5 100644 --- a/.github/workflows/release-s390x.yaml +++ b/.github/workflows/release-s390x.yaml @@ -11,7 +11,7 @@ jobs: uses: ./.github/workflows/build-kata-static-tarball-s390x.yaml kata-deploy: - needs: create-kata-tarball + needs: build-kata-static-tarball-s390x runs-on: s390x steps: - name: Login to Kata Containers docker.io