Skip to content

Commit 64ee413

Browse files
authored
Merge branch 'master' into under_annotations
2 parents d2eabcb + 86464bc commit 64ee413

File tree

12 files changed

+273
-112
lines changed

12 files changed

+273
-112
lines changed

.github/workflows/Nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ jobs:
7878
# "dotnet nuget push" with "dotnet nuget add source" to GitHub Packages is unstable for project names with a dot: https://github.com/NuGet/Home/issues/9775#issuecomment-714509211
7979
# So we must specify api-key directly in "dotnet nuget push" instead of following the GitHub Packages documentation
8080
# --no-symbols true to not let GitHub Releases interpret .snupkg as .nupkg
81-
dotnet nuget push .nupkgs\*.nupkg --source 'https://nuget.pkg.github.com/verybadcat/index.json' --api-key ${{ github.token }} --skip-duplicate --no-symbols true
81+
dotnet nuget push '.nupkgs\*.nupkg' --source 'https://nuget.pkg.github.com/verybadcat/index.json' --api-key ${{ github.token }} --skip-duplicate --no-symbols true
8282
shell: pwsh

.github/workflows/Release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ jobs:
4040
- name: Upload to NuGet
4141
run: |
4242
# Use --skip-duplicate since we want re-runs of this workflow to succeed in case of network issues
43-
dotnet nuget push .nupkgs\*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
43+
dotnet nuget push '.nupkgs\*.nupkg' -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
4444
shell: pwsh

0 commit comments

Comments
 (0)