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:
39
39
label : ' Type/Housekeeping'
40
40
# Extra line before $BODY or markdown on the first line of $BODY will be interpreted as plain text
41
41
change-template : |
42
- <details><summary>` $TITLE` (#$NUMBER) @$AUTHOR</summary><table><td>
42
+ <details><summary>$TITLE (#$NUMBER) @$AUTHOR</summary><table><td>
43
43
44
44
$BODY
45
45
</td></table></details>
Original file line number Diff line number Diff line change 51
51
file_glob : true
52
52
overwrite : true
53
53
- 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 75
75
run : |
76
76
# Non-Windows platforms require --store-password-in-clear-text: https://github.com/NuGet/Home/issues/1851
77
77
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
79
79
Ios :
80
80
runs-on : macos-latest
81
81
steps :
You can’t perform that action at this time.
0 commit comments