Skip to content

Removed Variant Rebalancer and added support for looping (#542) #885

Removed Variant Rebalancer and added support for looping (#542)

Removed Variant Rebalancer and added support for looping (#542) #885

Workflow file for this run

name: CI Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Build projects
run: dotnet build --configuration Debug /p:OutputPath=${PWD}/DebugOutput
- name: Prepare Artifact
run: |
find ./DebugOutput ! -name 'R2API*.dll' ! -name 'R2API*.pdb' ! -name 'R2API*.xml' ! -name 'xunit*' -type f -delete
- name: Upload R2API Build Artifact
uses: actions/upload-artifact@v3
with:
name: R2API
path: |
DebugOutput/*