Windows installer, reorganize workflows

This commit is contained in:
2023-03-28 00:12:32 +02:00
parent b3834edaee
commit 7194a335dd
10 changed files with 127 additions and 40 deletions

17
.github/workflows/windows-build.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: Build Windows exe and installer
on:
workflow_dispatch:
pull_request:
branches: ["main"]
# push:
jobs:
build-exe:
uses: ./.github/workflows/build-exe.yml
name: Build Windows exe
build-installer:
name: Build Windows installer
needs: build-exe
uses: ./.github/workflows/build-installer.yml