From 1c211cd730e51008deb9cd1344e551f104cfb6d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bombo?= Date: Tue, 13 Jun 2023 12:07:49 -0700 Subject: [PATCH] gha: Swap asset/release in build matrix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This simply displays the asset name first in GH's UI, so that the release name (always "test") is truncated rather than the asset name. Makes things slightly easier to read. e.g. build-asset (cloud-hypervisor-glibc, te... instead of build-asset (test, cloud-hypervisor-gli... Signed-off-by: Aurélien Bombo --- .github/workflows/build-kata-static-tarball-amd64.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-kata-static-tarball-amd64.yaml b/.github/workflows/build-kata-static-tarball-amd64.yaml index b5c7584fee..9a0cd755ca 100644 --- a/.github/workflows/build-kata-static-tarball-amd64.yaml +++ b/.github/workflows/build-kata-static-tarball-amd64.yaml @@ -19,8 +19,6 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - stage: - - ${{ inputs.stage }} asset: - cloud-hypervisor - cloud-hypervisor-glibc @@ -46,9 +44,11 @@ jobs: - shim-v2 - tdvf - virtiofsd + stage: + - ${{ inputs.stage }} exclude: - - stage: release - asset: cloud-hypervisor-glibc + - asset: cloud-hypervisor-glibc + stage: release steps: - name: Login to Kata Containers quay.io if: ${{ inputs.push-to-registry == 'yes' }}