diff options
| author | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2025-12-19 17:53:49 -0500 |
|---|---|---|
| committer | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2025-12-19 17:53:49 -0500 |
| commit | d4432c995e6db6f482abcfd8d178faad11df686f (patch) | |
| tree | c2bb0c770301be1fff9ebf875dd543bd08486ca7 /.github/workflows | |
| parent | 386316cbbde695e8b1855fe5c60a2059c3916709 (diff) | |
Update build.yaml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e2f2200fac..019afbb4aa 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -92,8 +92,8 @@ jobs: # Only set variants to the one configuration: don't let build.sh loop # over variants, let GitHub distribute variants over multiple hosts. variants: ${{ matrix.configuration }} - # Pass USE_VELOPACK to CMake when using Velopack installer (default) - autobuild_configure_parameters: ${{ (github.event.inputs.installer_type || 'velopack') == 'velopack' && '-DUSE_VELOPACK:BOOL=ON' || '' }} + # Pass USE_VELOPACK to CMake when using Velopack installer (default) - Windows only + autobuild_configure_parameters: ${{ contains(matrix.runner, 'windows') && (github.event.inputs.installer_type || 'velopack') == 'velopack' && '-DUSE_VELOPACK:BOOL=ON' || '' }} steps: - name: Checkout code uses: actions/checkout@v5 |
