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.
1 parent db92235 commit 690ed38Copy full SHA for 690ed38
.github/workflows/build.yml
@@ -19,6 +19,16 @@ on:
19
default: ''
20
required: false
21
type: string
22
+ os:
23
+ description: os to use in the run
24
+ type: choice
25
+ options:
26
+ - '["ubuntu-latest"]'
27
+ - '["windows-latest"]'
28
+ - '["macos-latest"]'
29
+ - '["ubuntu-latest", "macos-latest", "windows-latest"]'
30
+ default: '["ubuntu-latest", "macos-latest", "windows-latest"]'
31
+ required: true
32
33
jobs:
34
build:
@@ -28,7 +38,7 @@ jobs:
38
strategy:
39
fail-fast: false
40
matrix:
- os: [ ubuntu-latest, macos-latest, windows-latest ]
41
+ os: ${{ fromJson(inputs.os) }} # [ ubuntu-latest, macos-latest, windows-latest ]
42
43
44
steps:
0 commit comments