Skip to content

Merge branch 'refs/heads/master' into auto-build #3

Merge branch 'refs/heads/master' into auto-build

Merge branch 'refs/heads/master' into auto-build #3

Workflow file for this run

name: Build
on: [ workflow_dispatch, push ]
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Generate Flatbuffers
run: .\generate-flatbuffers.bat
- name: Build
run: dotnet publish
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: RLBotServer-windows
path: ./**/publish/RLBotServer.exe
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Generate Flatbuffers
run: ./generate-flatbuffers.sh
- name: Build
run: dotnet publish
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: RLBotServer-ubuntu
path: ./**/publish/RLBotServer