We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
os
1 parent 9863e24 commit ce432abCopy full SHA for ce432ab
.github/workflows/build.yml
@@ -23,7 +23,8 @@ on:
23
jobs:
24
build:
25
name: ${{ inputs.name }}
26
- runs-on: ${{ inputs.os }}
+ runs-on:
27
+ - ${{ inputs.os }}
28
timeout-minutes: ${{ inputs.timeout }}
29
steps:
30
- name: Free disk space
.github/workflows/check.yml
@@ -37,8 +37,9 @@ jobs:
37
strategy:
38
fail-fast: false
39
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
40
+ secrets: inherit
41
with:
42
name: ${{ matrix.name }} (${{ matrix.system }})
43
system: ${{ matrix.system }}
- os: ${{ matrix.os }}
44
+ os: ${{ join( matrix.os, ' ' ) }} # FIXME: os is an array!
45
attr: ${{ matrix.attr }}
0 commit comments