-
-
Notifications
You must be signed in to change notification settings - Fork 6
31 lines (23 loc) · 771 Bytes
/
build.yml
File metadata and controls
31 lines (23 loc) · 771 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
name: Build
on: workflow_dispatch
jobs:
build:
runs-on: windows-2022
strategy:
matrix:
configuration: [Release]
platform: [x64]
steps:
- run: Get-PSDrive
- uses: actions/checkout@v4
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ matrix.platform }} ShaderBeam.sln
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: 'ShaderBeam_${{ matrix.platform }}_${{ matrix.configuration }}'
path: '.\${{ matrix.platform }}\${{ matrix.configuration }}\ShaderBeam.exe'
overwrite: true