Skip to content
alert-circle

GitHub Action

Beat Saber DLLs

v1.1 Latest version

Beat Saber DLLs

alert-circle

Beat Saber DLLs

Fetch Beat Saber / BSIPA DLLs for use in CI

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Beat Saber DLLs

uses: bsmg/action-beat-saber-dlls@v1.1

Learn more about this action in bsmg/action-beat-saber-dlls

Choose a version

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"