File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ categories:
3939 label : ' Type/Housekeeping'
4040# Extra line before $BODY or markdown on the first line of $BODY will be interpreted as plain text
4141change-template : |
42- <details><summary>` $TITLE` (#$NUMBER) @$AUTHOR</summary><table><td>
42+ <details><summary>$TITLE (#$NUMBER) @$AUTHOR</summary><table><td>
4343
4444 $BODY
4545 </td></table></details>
Original file line number Diff line number Diff line change 5151 file_glob : true
5252 overwrite : true
5353 - name : Upload to NuGet
54- run : dotnet nuget push .nupkgs/* -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
54+ run : dotnet nuget push .nupkgs/ -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
55+ # If .nupkgs/* is used instead of .nupkg/ as the path, then not all files will be uploaded
56+ # So CSharpMath.0.5.0-alpha.nupkg and CSharpMath.0.5.0-alpha.snupkg will be uploaded but not others e.g. CSharpMath.Rendering.0.5.0-alpha.nupkg
Original file line number Diff line number Diff line change 7575 run : |
7676 # Non-Windows platforms require --store-password-in-clear-text: https://github.com/NuGet/Home/issues/1851
7777 dotnet nuget add source https://nuget.pkg.github.com/verybadcat/index.json -n github -u verybadcat -p ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
78- dotnet nuget push .nupkgs/ --source "github" --skip-duplicate
78+ dotnet nuget push .nupkgs/*.nupkg --source "github" --skip-duplicate # Don't let GitHub Releases interpret .snupkg as .nupkg
7979 Ios :
8080 runs-on : macos-latest
8181 steps :
You can’t perform that action at this time.
0 commit comments