Skip to content

Add version info to pbench.exe. #19

Add version info to pbench.exe.

Add version info to pbench.exe. #19

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
- name: Restore
run: msbuild pbench.sln /t:restore /p:Configuration=Release /p:Platform=x86
- name: Build
run: msbuild pbench.sln /t:build /p:Configuration=Release /p:Platform=x86 /p:RestorePackages=false
- name: Prepare artifact
run: |
mkdir -Path .\artifact
copy -Path .\_bin\Release-x86\pbench.exe -Destination .\artifact
copy -Path .\_bin\Release-x86\en-US\pbench.msi -Destination .\artifact
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: pbench
path: .\artifact