ci: try skipping windows build

+ downgrade psutils
This commit is contained in:
cwilvx
2024-05-25 16:24:16 +03:00
parent 0b8a5e92f5
commit 23ebab872e
2 changed files with 10 additions and 2 deletions
+9 -1
View File
@@ -7,6 +7,14 @@ on:
description: "Tag"
required: true
default: "1.x.x"
build_windows:
description: "Build Windows binary"
required: true
default: "true"
type: choice
options:
- true
- false
is_latest:
description: "Set as latest"
required: true
@@ -36,7 +44,7 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-20.04, windows-2019]
os: ${{inputs.build_windows == 'true' && toJson('[ubuntu-20.04, windows-2019]') || toJson('[ubuntu-20.04]')}}
runs-on: ${{ matrix.os }}
name: Create binary on ${{ matrix.os }}
steps: