Skip to content

Commit

Permalink
ci: Fix Check Build again
Browse files Browse the repository at this point in the history
  • Loading branch information
motss committed Mar 26, 2020
1 parent 433cf19 commit 2e23e56
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,11 @@ jobs:
- name: Check build
run: |
pwd && ls -la
- name: Check build
if: ${{ runner.os }} == 'windows-2019'
run: |
pwd && ls
if [ "$RUNNER_OS" == "Windows"]; then
pwd && ls -la
else
pwd && ls
fi
- name: Upload build artifact
uses: actions/upload-artifact@v1
Expand Down

0 comments on commit 2e23e56

Please sign in to comment.