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
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
make build
|
make build
|
||||||
|
if: matrix.os != 'windows-latest' # Remove windows builds. Difficult to maintain.
|
||||||
|
|
||||||
- name: Cross-compile
|
- name: Cross-compile
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
@ -131,7 +133,8 @@ jobs:
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
name: build-${{ matrix.job_name }}
|
name: build-${{ matrix.job_name }}
|
||||||
path: bin/*
|
path: bin/*
|
||||||
|
if: matrix.os != 'windows-latest' # Remove windows builds. Difficult to maintain.
|
||||||
|
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
|
Loading…
Reference in a new issue