Skip to content

check protocol setting #46

check protocol setting

check protocol setting #46

Workflow file for this run

name: Master Build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['6.0']
steps:
- uses: actions/checkout@v4.1.4
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- uses: actions/upload-artifact@v4.3.3
with:
name: MoreGameModes.dll
path: bin/Release/net6.0/MoreGamemodes.dll