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 35c6606 commit d4e1072Copy full SHA for d4e1072
.github/workflows/build.yml
@@ -11,10 +11,10 @@ on:
11
jobs:
12
build:
13
runs-on: ${{ matrix.os }}
14
- container: ${{ (runner.os == 'Linux' && 'alpine:3.12') || '' }}
+ container: ${{ (startsWith(matrix.os,'ubuntu') && 'alpine:3.12') || '' }}
15
defaults:
16
run:
17
- shell: ${{ (runner.os == 'Windows' && 'bash') || 'sh' }}
+ shell: ${{ (startsWith(matrix.os,'windows') && 'bash') || 'sh' }}
18
strategy:
19
fail-fast: false
20
matrix:
0 commit comments