Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Mertsch committed Dec 15, 2021
2 parents 4af4114 + d7467cd commit 243a7df
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,18 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 6.x
- name: Restore dependencies
run: dotnet restore Source/Launchbar.sln
- name: Build
run: dotnet build Source/Launchbar.sln --no-restore
run: dotnet build Source/Launchbar.sln --no-restore --configuration Release
- name: Test
run: dotnet test Source/Launchbar.sln --no-build --verbosity normal
- name: Publish
run: dotnet publish Source/Launchbar.sln --no-build --configuration Release
- name: Upload
uses: actions/upload-artifact@v2
with:
name: Launchbar
path: Source/Launchbar/bin/Release/publish/**
if-no-files-found: error

0 comments on commit 243a7df

Please sign in to comment.