Skip to content

Remove ref BGNet.dll in favor of BGNetCore.dll #2

Remove ref BGNet.dll in favor of BGNetCore.dll

Remove ref BGNet.dll in favor of BGNetCore.dll #2

Workflow file for this run

name: Build
on:
push:
branches: [ master, dev/* ]
paths:
- 'MultiplayerExtensions.sln'
- 'MultiplayerExtensions/**'
- '.github/workflows/Build.yml'
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Initialize modding environment
uses: beat-forge/init-beatsaber@v1
with:
token: ${{ github.token }}
repo: michael-r-elp/beatsaber-stripped
manifest: ./MultiplayerExtensions/manifest.json
- name: Fetch Mod References
uses: Goobwabber/[email protected]
with:
manifest: ./MultiplayerExtensions/manifest.json
- name: Build
id: Build
env:
FrameworkPathOverride: /usr/lib/mono/4.8-api
run: dotnet build --configuration Release
- name: GitStatus
run: git status
- name: Echo Filename
run: echo $BUILDTEXT \($ASSEMBLYNAME\)
env:
BUILDTEXT: Filename=${{ steps.Build.outputs.filename }}
ASSEMBLYNAME: AssemblyName=${{ steps.Build.outputs.assemblyname }}
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ steps.Build.outputs.filename }}
path: ${{ steps.Build.outputs.artifactpath }}