Get product SKU from prebuilt computers #187
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: commit build | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v2 | |
with: | |
msbuild-architecture: x64 | |
- name: Setup NuGet | |
uses: NuGet/setup-nuget@v2 | |
- name: Install dependencies | |
run: nuget restore client\client.sln | |
- name: Build | |
run: msbuild client\client.sln -property:Configuration=Release | |
- name: Upload build | |
uses: actions/[email protected] | |
with: | |
name: specify_client_commit | |
path: client\bin\Release\specify_client.exe |