-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (30 loc) · 857 Bytes
/
Copy pathbuild.yml
File metadata and controls
37 lines (30 loc) · 857 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
33
34
35
36
37
name: Build and validate
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- name: Check out source
uses: actions/checkout@v7
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v3
- name: Build portable beta
shell: pwsh
run: .\build\Build-Release.ps1
- name: Run source and portable checks
shell: pwsh
run: .\build\Test-Beta.ps1 -SkipInstallerChecks -SkipLiveDeviceChecks
- name: Upload portable build
uses: actions/upload-artifact@v7
with:
name: evoworks-control-portable-${{ github.sha }}
path: |
EvoworksControl-Beta.exe
EvoworksControl-Beta-portable.zip
if-no-files-found: error
retention-days: 14