Skip to content

ci: rename step

ci: rename step #33

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET Build
on:
push:
pull_request:
workflow_dispatch:
workflow_call:
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Setup NuGet
uses: NuGet/setup-nuget@v2
- name: Restore NuGet Packages
run: nuget restore DeppartPrototypeHentaiPlayMod.sln
- name: Build
run: msbuild DeppartPrototypeHentaiPlayMod.sln /p:Configuration=${{ matrix.configuration }}
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.configuration }}
path: DeppartPrototypeHentaiPlayMod\bin\${{ matrix.configuration }}