Skip to content

Commit a3c8651

Browse files
committed
Fix pack directory
1 parent 8314c75 commit a3c8651

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/dotnet-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
8.0.x
1818
1919
- name: Build with dotnet
20-
run: dotnet build --configuration Release
20+
run: dotnet build --configuration release
2121

2222
- name: Test
23-
run: dotnet test --configuration Release
23+
run: dotnet test --configuration release

.github/workflows/nuget-tag-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727

2828
- name: Build with dotnet
2929
run: |
30-
dotnet build --configuration Release
31-
dotnet pack --configuration Release --no-build
30+
dotnet build --configuration release
31+
dotnet pack --configuration release --no-build
3232
3333
- name: Install Nuget
3434
uses: nuget/setup-nuget@v1
@@ -41,5 +41,5 @@ jobs:
4141
4242
- name: Push generated package to GitHub registry
4343
run: |
44-
nuget push .\bin\Release\*.nupkg -Source github -SkipDuplicate
45-
nuget push .\bin\Release\*.nupkg -Source https://api.nuget.org/v3/index.json -SkipDuplicate -ApiKey ${{ secrets.NugetKey }}
44+
nuget push .\artifacts\package\release\*.nupkg -Source github -SkipDuplicate
45+
nuget push .\artifacts\package\release\*.nupkg -Source https://api.nuget.org/v3/index.json -SkipDuplicate -ApiKey ${{ secrets.NugetKey }}

0 commit comments

Comments
 (0)