Skip to content

CI: Tag pushes

CI: Tag pushes #13

Workflow file for this run

name: Build Repository
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
- name: Restore NuGet Packages
run: msbuild Andraste.Launcher.csproj /t:Restore
- name: Build project
run: msbuild Andraste.Launcher.csproj /p:Configuration=Release /p:Platform=x86 /t:Build
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Release win-x86
path: bin\Release\net48\win-x86\*