From 0e28ffab3bb1d416344bde0d88e1a4abbb8c9e23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20K=C5=82ys?= Date: Mon, 9 Feb 2026 10:42:52 +0100 Subject: [PATCH] CI: fix self-hosted runner labels --- .github/workflows/test-dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-dotnet.yml b/.github/workflows/test-dotnet.yml index 4e31ced35..303c95a12 100644 --- a/.github/workflows/test-dotnet.yml +++ b/.github/workflows/test-dotnet.yml @@ -23,7 +23,7 @@ jobs: name: 'Windows' # While the repo is private, prefer self-hosted runners to avoid GitHub-hosted spend limits. # When public, use GitHub-hosted runners by default. - runs-on: ${{ fromJSON(github.event.repository.private && '["self-hosted","windows"]' || '["windows-latest"]') }} + runs-on: ${{ fromJSON(github.event.repository.private && '["self-hosted","Windows"]' || '["windows-latest"]') }} timeout-minutes: 20 steps: - name: Checkout code @@ -122,7 +122,7 @@ jobs: name: 'macOS' # While the repo is private, prefer self-hosted runners to avoid GitHub-hosted spend limits. # When public, use GitHub-hosted runners by default. - runs-on: ${{ fromJSON(github.event.repository.private && '["self-hosted","macos"]' || '["macos-latest"]') }} + runs-on: ${{ fromJSON(github.event.repository.private && '["self-hosted","macOS"]' || '["macos-latest"]') }} timeout-minutes: 20 steps: - name: Checkout code