From 0e2379909b0a543b9431f27f47e17a479b2dedff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bombo?= Date: Mon, 12 Jun 2023 11:24:45 -0700 Subject: [PATCH] gha: Fix `stage` definition in matrix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This defines `stage` as a list instead of a literal to fix the GHA CI. Fixes: #7086 Signed-off-by: Aurélien Bombo --- .github/workflows/build-kata-static-tarball-amd64.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-kata-static-tarball-amd64.yaml b/.github/workflows/build-kata-static-tarball-amd64.yaml index 1ef136ff1c..b5c7584fee 100644 --- a/.github/workflows/build-kata-static-tarball-amd64.yaml +++ b/.github/workflows/build-kata-static-tarball-amd64.yaml @@ -19,7 +19,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - stage: ${{ inputs.stage }} + stage: + - ${{ inputs.stage }} asset: - cloud-hypervisor - cloud-hypervisor-glibc