Skip to content

Commit 1f12559

Browse files
authored
fix runs-on condition for linux builds (#1839)
1 parent ff1aeae commit 1f12559

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ jobs:
489489
# was just a dummy variable to set a default value for target
490490
- target: undefined
491491

492-
runs-on: ${{ matrix.runs-on || format('{0}-latest', matrix.os) }}
492+
runs-on: ${{ matrix.runs-on || format('{0}-latest', (matrix.os == 'linux' && 'ubuntu') || matrix.os) }}
493493
steps:
494494
- uses: actions/checkout@v5
495495

0 commit comments

Comments
 (0)