From caf6611f7d2b49afba799e2e291353dd86c0adc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C4=8Cerm=C3=A1k?= Date: Thu, 19 Oct 2023 22:58:00 +0200 Subject: [PATCH] Fix extraction of OVA image artifact in test step (#2842) * Fix extraction of OVA image artifact in test step If the test image is obtained from an artifact instead of downloading, its name contains the version as well, in that case we still need to use wildcard expansion. * uncompress qcow2 to a stable filename --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c9f8d9979..8d679009f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -61,7 +61,7 @@ jobs: - name: Extract OS image run: | - unxz haos.qcow2.xz + xz -dc haos*.qcow2.xz > haos.qcow2 - name: Run tests run: |