From 0b89fda8e9a0ce621e74412506a7f9a577c5b180 Mon Sep 17 00:00:00 2001 From: Antonio Navarro Perez Date: Wed, 1 Dec 2021 10:51:56 +0100 Subject: [PATCH] Remove Windows builds. (#99) --- .github/workflows/build.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c570e4f..9092ce2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -119,6 +119,8 @@ jobs: shell: bash run: | make build + if: matrix.os != 'windows-latest' # Remove windows builds. Difficult to maintain. + - name: Cross-compile shell: bash run: | @@ -131,7 +133,8 @@ jobs: if-no-files-found: error name: build-${{ matrix.job_name }} path: bin/* - + if: matrix.os != 'windows-latest' # Remove windows builds. Difficult to maintain. + - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/')