Skip to content

Commit

Permalink
fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
majkel89 committed Mar 9, 2024
1 parent a3e2a6a commit 7df4385
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:
if [[ $OUT =~ "has the following vulnerable packages" ]] ; then exit 1 ; fi
- name: Build
run: dotnet publish -c ${{ env.dotNetConfiguration }} -r linux-x64 --no-self-contained
run: |
echo "" > .env
dotnet publish -c ${{ env.dotNetConfiguration }} -r linux-x64 --no-self-contained
- name: Test
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage"

0 comments on commit 7df4385

Please sign in to comment.