Skip to content

Commit

Permalink
runner not allowed out of steps
Browse files Browse the repository at this point in the history
  • Loading branch information
jneira committed Jan 21, 2022
1 parent 35c6606 commit 3e7e4fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ on:
jobs:
build:
runs-on: ${{ matrix.os }}
container: ${{ (runner.os == 'Linux' && 'alpine:3.12') || '' }}
container: ${{ (startsWith(matrix.os, 'ubuntu' && 'alpine:3.12') || '' }}
defaults:
run:
shell: ${{ (runner.os == 'Windows' && 'bash') || 'sh' }}
shell: ${{ (startsWith(matrix.os,'windows') && 'bash') || 'sh' }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 3e7e4fc

Please sign in to comment.