File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,18 @@ jobs:
1616 - name : Setup .NET
1717 uses : actions/setup-dotnet@v1
1818 with :
19- dotnet-version : 5.0 .x
19+ dotnet-version : 6 .x
2020 - name : Restore dependencies
2121 run : dotnet restore Source/Launchbar.sln
2222 - name : Build
23- run : dotnet build Source/Launchbar.sln --no-restore
23+ run : dotnet build Source/Launchbar.sln --no-restore --configuration Release
2424 - name : Test
2525 run : dotnet test Source/Launchbar.sln --no-build --verbosity normal
26+ - name : Publish
27+ run : dotnet publish Source/Launchbar.sln --no-build --configuration Release
28+ - name : Upload
29+ uses : actions/upload-artifact@v2
30+ with :
31+ name : Launchbar
32+ path : Source/Launchbar/bin/Release/publish/**
33+ if-no-files-found : error
You can’t perform that action at this time.
0 commit comments