From 8043d2544ba27a0fc8c9f4eabfa4ab10bcf52447 Mon Sep 17 00:00:00 2001 From: Beq Date: Tue, 18 Nov 2025 17:43:04 +0000 Subject: [PATCH] OK, scrap that github hated it. --- .github/workflows/build_viewer.yml | 31 +++++------------------------- 1 file changed, 5 insertions(+), 26 deletions(-) diff --git a/.github/workflows/build_viewer.yml b/.github/workflows/build_viewer.yml index ce16ed1d3b..8fe74f33b9 100644 --- a/.github/workflows/build_viewer.yml +++ b/.github/workflows/build_viewer.yml @@ -7,21 +7,9 @@ on: required: false default: 'false' override_signing: - description: 'Manual builds are not signned by default. Force code signing for this run.' + description: 'Manual builds are not signed by default. Force code signing for this run.' required: false default: 'false' - target_os: - description: 'Optional: macos-15, ubuntu-22.04, or windows-2022 to run only that OS (manual trigger only)' - required: false - default: '' - target_grid: - description: 'Optional: sl or os to run a single grid combo when used with target_os and target_variant' - required: false - default: '' - target_variant: - description: 'Optional: regular or avx to run a single build variant when used with target_os and target_grid' - required: false - default: '' push: branches: - "Firestorm*.*.*" @@ -46,19 +34,10 @@ env: jobs: build_matrix: strategy: - matrix: ${{ fromJSON( - (github.event_name == 'workflow_dispatch' && - github.event.inputs.target_os != '' && - github.event.inputs.target_grid != '' && - github.event.inputs.target_variant != '') && - format( - '[{{"os":"{0}","grid":"{1}","variant":"{2}"}}]', - github.event.inputs.target_os, - github.event.inputs.target_grid, - github.event.inputs.target_variant - ) - || '{"os":["macos-15","ubuntu-22.04","windows-2022"],"grid":["sl","os"],"variant":["regular","avx"]}' - ) }} + matrix: + os: ["macos-15","ubuntu-22.04","windows-2022"] + grid: ["sl","os"] + variant: ["regular","avx"] runs-on: ${{ matrix.os }} container: ${{ matrix.container_image }} outputs: