Skip to content

Build

Build #3

Workflow file for this run

name: Build
on:
workflow_dispatch:
env:
SOLUTION_FILE_PATH: .
BUILD_CONFIGURATION: Release
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} /verbosity:minimal
- uses: actions/upload-artifact@v4
with:
name: 'OptiPatcher.zip'
path: '${{ github.workspace }}\x64\Release\OptiPatcher.asi'
if-no-files-found: error