Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Shprrr committed Jun 1, 2023
1 parent 0d02136 commit afd9eb0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ jobs:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore --property:OutputPath=release
run: dotnet build --configuration Release --no-restore --property:OutputPath=..\release
- name: Unit tests
if: ${{ env.UNIT_TEST }}
run: dotnet test --no-restore --verbosity normal
- name: Upload build
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ env.SOLUTION_NAME }}
path: release\

0 comments on commit afd9eb0

Please sign in to comment.