Skip to content

Commit d839b7e

Browse files
committed
Fix package name
1 parent 09cea3d commit d839b7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/nuget-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ jobs:
3131
run: dotnet pack .\Source\Expressive\Expressive.csproj -c Release /p:Version=${{ steps.get_version.outputs.version-without-v }} --no-build --output .
3232

3333
- name: Push
34-
run: dotnet nuget push Expressive.${{ steps.get_version.outputs.version-without-v }}.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }}
34+
run: dotnet nuget push ExpressiveParser.${{ steps.get_version.outputs.version-without-v }}.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }}
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.NUGET_API_KEY }}
3737

3838
- name: Push symbols
39-
run: dotnet nuget push Expressive.${{ steps.get_version.outputs.version-without-v }}.snupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }}
39+
run: dotnet nuget push ExpressiveParser.${{ steps.get_version.outputs.version-without-v }}.snupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }}
4040
env:
4141
GITHUB_TOKEN: ${{ secrets.NUGET_API_KEY }}

0 commit comments

Comments
 (0)