feat: in-game options, flags overhaul (#506) #21
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: Patcher | |
on: | |
push: | |
branches: [ "v*", "master" ] | |
paths: [ "patcher/**/*" ] | |
pull_request: | |
branches: [ "v*", "master" ] | |
paths: [ "patcher/**/*" ] | |
jobs: | |
build: | |
name: Build Patcher | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
- name: Build Patcher | |
run: msbuild.exe patcher\HitmanPatcher.sln -t:Build -p:Configuration=Release -p:Platform=x64 -m | |
- name: Upload Patcher Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: patcher-windows | |
path: patcher/bin/x64/Release/PeacockPatcher.exe |