Try to build csproj directly and publish artifacts

This commit is contained in:
Pat Hartl 2023-04-03 23:51:09 -05:00
parent 34b71baa04
commit 91eeb7818e

View file

@ -23,4 +23,11 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build .\LANCommander\LANCommander.csproj --no-restore
run: dotnet build "./LANCommander/LANCommander.csproj" --no-restore
- name: Publish
run: dotnet publish "./LANCommander/LANCommander.csproj" -c Release -o LANCommander
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: LANCommander
path: "./LANCommander"