Skip to content

Commit

Permalink
Fixed wrong library path.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfyda committed Jun 8, 2024
1 parent 73c8079 commit 069cd59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nuget-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
echo "##[endgroup]"
- name: Restore dependencies
run: dotnet restore library/SlothfulCrud/SlothfulCrud.csproj
run: dotnet restore library/SlothfulCrud/SlothfulCrud/SlothfulCrud.csproj

- name: Build
run: dotnet build library/SlothfulCrud/SlothfulCrud.csproj --configuration Release --no-restore
Expand All @@ -43,7 +43,7 @@ jobs:
run: dotnet test library/SlothfulCrud/Tests/SlothfulCrud.Tests.Unit/SlothfulCrud.Tests.Unit.csproj --no-restore --verbosity normal

- name: Pack NuGet package
run: dotnet pack library/SlothfulCrud/SlothfulCrud.csproj --configuration Release --no-build --output ./nupkg /p:PackageVersion=${{ steps.get_version.outputs.VERSION }}
run: dotnet pack library/SlothfulCrud/SlothfulCrud/SlothfulCrud.csproj --configuration Release --no-build --output ./nupkg /p:PackageVersion=${{ steps.get_version.outputs.VERSION }}

- name: Publish NuGet package
env:
Expand Down

0 comments on commit 069cd59

Please sign in to comment.