Create dotnet.yml

This commit is contained in:
olebeck 2021-01-28 11:34:52 +01:00 committed by GitHub
parent 4d836ba7cc
commit c1b309f8a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

31
.github/workflows/dotnet.yml vendored Normal file
View file

@ -0,0 +1,31 @@
name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
defaults:
run:
working-directory: ./Horse Isle Server
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet publish --no-restore -c Release -r linux-x64 --self-contained true
- name: upload result
uses: actions/upload-artifact@v2
with:
name: result
path: Horse Isle Server/HorseIsleServer/bin/