Skip to content

Add build configurations for PoE2 client #14

Add build configurations for PoE2 client

Add build configurations for PoE2 client #14

Workflow file for this run

name: Build EXE
on: [push, workflow_dispatch]
jobs:
build_exes:
strategy:
matrix:
version: ['', -PoE2]
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1
- name: Build EXEs
run: 'msbuild PathOfBuilding-Launcher.vcxproj /p:configuration=release${{ matrix.version }} /p:platform=x64'
- name: Archive EXE
uses: actions/upload-artifact@v4
with:
name: Path of Building.exe
path: '${{ github.workspace }}/x64/Release${{ matrix.version }}/Path of Building.exe'