Skip to content

Commit 2e4143d

Browse files
author
Taha Zahit Hakyemez
committed
Fix solution and project paths in CI workflow
1 parent e7cd268 commit 2e4143d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
with:
1919
dotnet-version: 6.0.x
2020
- name: Restore dependencies
21-
run: dotnet restore BiMap/BiMap/BiMap.sln
21+
run: dotnet restore BiMap/BiMap.sln
2222
- name: Build
23-
run: dotnet build --no-restore BiMap/BiMap/BiMap.sln --configuration Release
23+
run: dotnet build --no-restore BiMap/BiMap.sln --configuration Release
2424

2525
deploy:
2626
runs-on: ubuntu-latest
@@ -33,6 +33,6 @@ jobs:
3333
with:
3434
dotnet-version: 6.0.x
3535
- name: Pack
36-
run: dotnet pack BiMap/BiMap/BiMap/BiMap.csproj --configuration Release --output nuget-packages
36+
run: dotnet pack BiMap/BiMap/BiMap.csproj --configuration Release --output nuget-packages
3737
- name: Publish to NuGet
3838
run: dotnet nuget push "nuget-packages/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json

0 commit comments

Comments
 (0)