Skip to content

Commit 7f6780c

Browse files
authored
Specify project path for dotnet pack commands
1 parent c1425c2 commit 7f6780c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/manual.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
run: dotnet build -c Release-Signed --no-restore
3232
- name: Push to NuGet
3333
run: |
34-
dotnet pack -c Release -o $PWD/Release/nuget
34+
dotnet pack .\CardinalityEstimation\CardinalityEstimation.csproj -c Release -o $PWD/Release/nuget
3535
for file in Release/nuget/*.nupkg; do dotnet nuget push -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} $file; done
3636
- name: Push Signed to NuGet
3737
run: |
38-
dotnet pack -c Release-Signed -o $PWD/Release-Signed/nuget
38+
dotnet pack .\CardinalityEstimation\CardinalityEstimation.csproj -c Release-Signed -o $PWD/Release-Signed/nuget
3939
for file in Release-Signed/nuget/*.nupkg; do dotnet nuget push -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} $file; done

0 commit comments

Comments
 (0)