Skip to content

Commit

Permalink
Fixed osx condition into action
Browse files Browse the repository at this point in the history
  • Loading branch information
imperugo committed Mar 10, 2020
1 parent aa03792 commit fc2a50b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
dotnet-version: 3.1.101

- run: dotnet --info
- if: contains(matrix.runs-on, 'macOS') || contains(matrix.runs-on, 'ubuntu')
- if: matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest')
run: ./build.sh

- if: contains(matrix.runs-on, 'windows')
- if: matrix.os == 'windows-latest'
run: ./build.cmd

0 comments on commit fc2a50b

Please sign in to comment.