Skip to content

Commit 243a7df

Browse files
committed
Merge branch 'main' of https://github.com/Mertsch/Launchbar
2 parents 4af4114 + d7467cd commit 243a7df

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)