Skip to content

bsmg/action-beat-saber-dlls

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Beat Saber DLLs Action

Use stripped Beat Saber DLLs in GitHub Actions

Fetches DLLs from https://github.com/beat-saber-modding-group/beat-saber-dlls

Config

See action.yml for configuration.

Example Workflow

name: .NET Build
on: [push]

jobs:
  build:
    runs-on: windows-latest
    steps:
    - uses: actions/checkout@v1
    - name: Setup MSBuild
      uses: warrenbuckley/Setup-MSBuild@v1
    - name: Add Beat Saber DLLs
      uses: beat-saber-modding-group/action-beat-saber-dlls@v1
    - name: Install dependencies
      run: msbuild -t:restore
    - name: Build project
      run: msbuild /t:Build /p:Configuration=Release /p:ReferencePath="D:\beat-saber-dlls"