From ec1f755ae319dda474d52773fe289d92a383692c Mon Sep 17 00:00:00 2001 From: Robert Sturla Date: Thu, 29 Feb 2024 16:55:37 +0000 Subject: [PATCH] chore: small refactoring to CI build matrix jobs (#48) chore: small refactoring so the build matrix job names make a bit more sense --- .github/workflows/test-iso.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test-iso.yml b/.github/workflows/test-iso.yml index 0d099d5..5a9d2c3 100644 --- a/.github/workflows/test-iso.yml +++ b/.github/workflows/test-iso.yml @@ -27,18 +27,14 @@ jobs: strategy: fail-fast: false matrix: - version: - - 38 - - 39 - secure_boot: - - true - - false + version: [38, 39] + boot: [secureboot, insecure] include: - - secure_boot: true + - boot: secureboot SECURE_BOOT_KEY_URL: 'https://github.com/ublue-os/akmods/raw/main/certs/public_key.der' ENROLLMENT_PASSWORD: 'ublue-os' SECURE_BOOT_STRING: '-secure' - - secure_boot: false + - boot: insecure SECURE_BOOT_KEY_URL: '' ENROLLMENT_PASSWORD: '' SECURE_BOOT_STRING: ''