diff options
| author | Naoto Ono <onoto1998@gmail.com> | 2024-03-26 12:47:29 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2024-03-28 10:15:27 +0900 |
| commit | 84236132760fbc09c511b17fd1a49c6320f95b74 (patch) | |
| tree | ca99daad4b87c827b73f3047f5754799cae30e4a | |
| parent | dc9d2455b6bddb2bea21fe983de7be6b78924c1b (diff) | |
Launchable: Configure OS correctly in macos.yaml
| -rw-r--r-- | .github/workflows/macos.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 4bb41de22e..c89635ea82 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -88,7 +88,7 @@ jobs: - name: Set up Launchable uses: ./.github/actions/launchable/setup with: - os: ${{ matrix.os }} + os: ${{ matrix.os || (github.repository == 'ruby/ruby' && 'macos-arm-oss' || 'macos-14')}} test-opts: ${{ matrix.test_opts }} launchable-token: ${{ secrets.LAUNCHABLE_TOKEN }} builddir: build |
