forked from Boomslangnz/FFBArcadePlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (36 loc) · 1.11 KB
/
build.yml
File metadata and controls
46 lines (36 loc) · 1.11 KB
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
name: Build
on:
push:
branches: [master, fix/*, feature/*]
pull_request:
branches: [master]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
configuration: [Release]
platform: [x86, x64]
steps:
- uses: actions/checkout@v4
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Setup NuGet
uses: nuget/setup-nuget@v2
- name: Restore NuGet packages
run: nuget restore Dinput8Wrapper.sln
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Post-Build dependencies
run: |
cd Post-Build
npm install
- name: Build
run: msbuild Dinput8Wrapper.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ matrix.platform }} /m
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: FFBArcadePlugin-${{ matrix.configuration }}-${{ matrix.platform }}
path: ${{ matrix.configuration }}.${{ matrix.platform == 'x86' && 'Win32' || matrix.platform }}/