This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
63 lines (53 loc) · 1.98 KB
/
msbuild.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: MSBuild
on:
push:
paths:
- 'VRC-OSC-AudioEars/**'
- 'Installer/**'
- '.github/**'
pull_request:
paths:
- 'VRC-OSC-AudioEars/**'
- 'Installer/**'
- '.github/**'
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .
# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
BUILD_CONFIGURATION: Release
jobs:
build:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
- name: Restore NuGet packages
working-directory: ${{env.GITHUB_WORKSPACE}}
run: nuget restore ${{env.SOLUTION_FILE_PATH}}
- name: Build App
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild VRC-OSC-AudioEars/VRC-OSC-AudioEars.csproj /property:Configuration=Release
- name: Upload App
uses: actions/[email protected]
with:
# A file, directory or wildcard pattern that describes what to upload
path: "VRC-OSC-AudioEars\\bin\\release\\"
- name: Build Installer
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild Installer/Installer.wixproj
- name: Upload Installer
uses: actions/[email protected]
with:
# A file, directory or wildcard pattern that describes what to upload
path: "Installer\\bin\\Release\\"