From 9ae705df22c22e8c1a3e83db0ded1d059d189eb8 Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Wed, 21 Apr 2021 07:49:40 +0100 Subject: [PATCH] (#2244) Add Mac build into main workflow Now that this PR has been merged in: https://github.com/chocolatey/choco/pull/2239 It should be possible to add Mac build into the main GitHub Action workflow. Co-authored-by: TheCakeIsNaOH --- .github/workflows/build.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7ab1b5b72c..73b3553bb8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,4 +30,13 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build with .Net Framework - run: .\build.bat -v \ No newline at end of file + 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 \ No newline at end of file