Skip to content

Commit

Permalink
(#2244) Add Mac build into main workflow
Browse files Browse the repository at this point in the history
Now that this PR has been merged in:

#2239

It should be possible to add Mac build into the main GitHub Action
workflow.

Co-authored-by: TheCakeIsNaOH <[email protected]>
  • Loading branch information
gep13 and TheCakeIsNaOH committed Apr 21, 2021
1 parent 97571f6 commit 9ae705d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,13 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build with .Net Framework
run: .\build.bat -v
run: .\build.bat -v
# Build using mono on MacOS
macos-build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build with Mono
run: |
chmod +x build.sh
$GITHUB_WORKSPACE//build.sh -v

0 comments on commit 9ae705d

Please sign in to comment.