23 lines
412 B
YAML
23 lines
412 B
YAML
name: Build Windows Package
|
|
on:
|
|
push:
|
|
branches: [develop, master, pipeline-rework]
|
|
pull_request: {}
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
fetch:
|
|
uses: ./.github/workflows/build_prepare.yaml
|
|
permissions:
|
|
contents: read
|
|
with:
|
|
config: ""
|
|
version: custom
|
|
|
|
windows:
|
|
needs: fetch
|
|
name: Windows Build
|
|
uses: ./.github/workflows/build_windows.yaml
|
|
with:
|
|
arch: x64
|