Skip to content

Update v4.6.0

Update v4.6.0 #31

Workflow file for this run

name: AutoBuild .NET
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/cache@v4
with:
path: |
~/.nuget/packages
~/.cache/bepinex
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.x
- name: Build
run: dotnet build TheOtherRoles/TheOtherRoles.csproj --configuration Release
- name: Upload TheOtherRoles
uses: actions/upload-artifact@v4
with:
name: TheOtherRoles.dll
path: TheOtherRoles/bin/Release/net6.0/TheOtherRoles.dll