Skip to content

move request logs to verbose #12

move request logs to verbose

move request logs to verbose #12

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- TAG: linux-x64
- TAG: linux-arm
- TAG: win-x86
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 5.0.x
- name: Build
run: dotnet publish -r ${{ matrix.TAG }} -p:PublishSingleFile=true -c Release -nowarn:CS8632,CS0168,CS0162,CS1998
- name: Upload Build Result
uses: actions/[email protected]
with:
name: ${{ matrix.TAG }}
path: ./ProjectEarthServerAPI/bin/Release/net5.0/${{ matrix.TAG }}/publish