From 3689638ba0b4fe132b57114aa298235d5581ee59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20GUEZO?= Date: Sun, 22 Jun 2025 23:52:31 +0200 Subject: [PATCH] fix: used `matrix.name` instead of `matrix.os` for runs-on --- .github/workflows/cmake-multi-platform.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 1745dc4..ccb1ebc 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -10,7 +10,8 @@ on: jobs: build: - runs-on: ${{ matrix.name }} + name: ${{ matrix.name }} + runs-on: ${{ matrix.os }} strategy: # Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable.