Skip to content

Bump to Version 0.2.2 #5

Bump to Version 0.2.2

Bump to Version 0.2.2 #5

Workflow file for this run

name: Build Repository
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/[email protected]
- name: Restore NuGet Packages
run: nuget restore Andraste.Payload.Generic.csproj
- name: Build project
run: msbuild Andraste.Payload.Generic.csproj /p:Configuration=Release /p:GeneratePackageOnBuild=true
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: DLL
path: bin\Release\net48\Andraste.Payload.Generic.dll
- name: Upload NuPkg
uses: actions/upload-artifact@v3
with:
name: NuGet
path: bin\Release\Andraste.Payload.Generic.*.nupkg