Skip to content

Commit ce432ab

Browse files
committed
ci: FIX passing os as an array
1 parent 9863e24 commit ce432ab

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ on:
2323
jobs:
2424
build:
2525
name: ${{ inputs.name }}
26-
runs-on: ${{ inputs.os }}
26+
runs-on:
27+
- ${{ inputs.os }}
2728
timeout-minutes: ${{ inputs.timeout }}
2829
steps:
2930
- name: Free disk space

.github/workflows/check.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ jobs:
3737
strategy:
3838
fail-fast: false
3939
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
40+
secrets: inherit
4041
with:
4142
name: ${{ matrix.name }} (${{ matrix.system }})
4243
system: ${{ matrix.system }}
43-
os: ${{ matrix.os }}
44+
os: ${{ join( matrix.os, ' ' ) }} # FIXME: os is an array!
4445
attr: ${{ matrix.attr }}

0 commit comments

Comments
 (0)