Remove Windows builds. (#99)
This commit is contained in:
parent
5458cc8442
commit
0b89fda8e9
1 changed files with 4 additions and 1 deletions
5
.github/workflows/build.yaml
vendored
5
.github/workflows/build.yaml
vendored
|
@ -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/')
|
||||
|
|
Loading…
Reference in a new issue