-
-
Notifications
You must be signed in to change notification settings - Fork 559
32 lines (28 loc) · 917 Bytes
/
Copy pathbuild.yml
File metadata and controls
32 lines (28 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Build solution
on: [push, pull_request, workflow_dispatch]
# Cancel superseded runs on the same ref (e.g. push + pull_request for one commit).
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
strategy:
matrix:
include:
- runner: windows-2025
arch: x64
installer: Installer-x64.iss
- runner: windows-11-arm
arch: arm64
installer: Installer-arm64.iss
uses: ./.github/workflows/_build.yml
with:
runner: ${{ matrix.runner }}
arch: ${{ matrix.arch }}
installer: ${{ matrix.installer }}
sign: false
# Only keep the installer when the build was triggered manually.
upload_artifact: ${{ github.event_name == 'workflow_dispatch' }}
artifact_name: EverythingToolbar-Installer-${{ matrix.arch }}