Skip to content

added remote control for UniTAS via TCP/IP #815

added remote control for UniTAS via TCP/IP

added remote control for UniTAS via TCP/IP #815

Workflow file for this run

name: build-on-push
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
configuration: [ Debug, Release ]
steps:
- name: Checkout
uses: actions/checkout@v4.1.6
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v4.0.0
- name: Setup ffmpeg
uses: FedericoCarboni/setup-ffmpeg@v3.1
- name: Tests
run: dotnet test UniTAS --configuration ${{ matrix.configuration }}
- name: Build
run: dotnet build UniTAS --configuration ${{ matrix.configuration }}
- name: Get built artifacts
uses: actions/upload-artifact@v4.2.0
with:
name: ${{ matrix.configuration }}
path: ./UniTAS/Patcher/bin/${{ matrix.configuration }}