Only upload built files

This commit is contained in:
Pat Hartl 2023-04-04 19:24:33 -05:00
parent 91eeb7818e
commit a18abe4ccd

View file

@ -25,9 +25,9 @@ jobs:
- name: Build
run: dotnet build "./LANCommander/LANCommander.csproj" --no-restore
- name: Publish
run: dotnet publish "./LANCommander/LANCommander.csproj" -c Release -o LANCommander
run: dotnet publish "./LANCommander/LANCommander.csproj" -c Release -o _Build
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: LANCommander
path: "./LANCommander"
path: "./_Build"