CI: Rename os input to runner

This more clearly describes what the value is being used for, and avoids
some confusion between `os` and `os_name` in `lagom-template.yml`.
This commit is contained in:
Jelle Raaijmakers
2025-05-27 10:07:12 +02:00
committed by Jelle Raaijmakers
parent 08b81b37b1
commit 8e9bf01917
Notes: github-actions[bot] 2025-05-27 10:12:11 +00:00
5 changed files with 20 additions and 20 deletions

View File

@@ -11,19 +11,19 @@ env:
jobs:
build-and-package:
runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.runner }}
if: github.repository == 'LadybirdBrowser/ladybird'
strategy:
fail-fast: false
matrix:
os_name: ['Linux']
os: ['ubuntu-24.04']
runner: ['ubuntu-24.04']
arch: ['x86_64']
package_type: ['Linux-x86_64']
include:
- os_name: 'macOS'
os: 'macos-15'
runner: 'macos-15'
arch: 'arm64'
package_type: 'macOS-universal2'