File tree Expand file tree Collapse file tree 2 files changed +4
-13
lines changed
Expand file tree Collapse file tree 2 files changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,6 @@ name: Unlist NuGet
22
33on :
44 workflow_dispatch :
5- inputs :
6- version :
7- description : ' Version to unlist'
8- required : true
9- type : string
105 # release:
116 # types: [deleted]
127
@@ -24,14 +19,11 @@ jobs:
2419 steps :
2520 - name : Checkout code
2621 uses : actions/checkout@v4
27-
28- - name : Debug version input
29- run : echo "Version to unlist: ${{ github.event.release.tag_name || github.event.inputs.version }}"
3022
3123 # Unlist
3224 - name : Unlist Deleted Tag
3325 uses : darenm/unlist-nuget@v1
3426 with :
3527 NUGET_PACKAGE : ${{ env.PROJECT_NAME }} # Full Package ID
36- VERSION_REGEX : ${{ github.event.release.tag_name || github.event.inputs.version }}
28+ VERSION_REGEX : ${{ github.event.release.tag_name }}
3729 NUGET_KEY : ${{ secrets.NUGET_API_KEY }} # nuget.org API key
Original file line number Diff line number Diff line change @@ -95,7 +95,6 @@ Here is a performance comparison of various JSONPath queries on the standard boo
9595 }
9696}
9797```
98-
9998| Method | Mean | Error | StdDev | Gen0 | Gen1 | Allocated |
10099| ------------------------ | ----------:| ----------:| ----------:| -------:| -------:| ----------:|
101100|` $..[?(@.price < 10)] `
@@ -106,15 +105,15 @@ Here is a performance comparison of various JSONPath queries on the standard boo
106105| Newtonsoft.JObject | 12.153 us | 2.4881 us | 0.1364 us | 2.1057 | 0.0763 | 25.86 KB |
107106| JsonEverything.JsonNode | 23.541 us | 1.3946 us | 0.0764 us | 3.9063 | 0.1221 | 48.15 KB |
108107| | | | | | | |
109- | ` $..['bicycle','price'] `
108+ |` $..['bicycle','price'] `
110109| JsonCraft.JsonElement | 3.136 us | 0.2760 us | 0.0151 us | 0.3242 | - | 4.01 KB |
111110| Hyperbee.JsonElement | 3.578 us | 0.4623 us | 0.0253 us | 0.4349 | 0.0038 | 5.37 KB |
112111| JsonCons.JsonElement | 3.948 us | 0.6099 us | 0.0334 us | 0.5798 | - | 7.18 KB |
113112| Hyperbee.JsonNode | 5.181 us | 1.8016 us | 0.0988 us | 0.7477 | 0.0076 | 9.23 KB |
114113| Newtonsoft.JObject | 7.823 us | 0.8017 us | 0.0439 us | 1.1749 | 0.0458 | 14.55 KB |
115114| JsonEverything.JsonNode | 16.753 us | 1.5507 us | 0.0850 us | 2.3193 | 0.0610 | 28.5 KB |
116- |
117- | ` $..* ` | | | | | | |
115+ | | | | | | | |
116+ | ` $.. ` | | | | | | |
118117| JsonCraft.JsonElement | 2.497 us | 0.0903 us | 0.0049 us | 0.2327 | - | 2.88 KB |
119118| Hyperbee.JsonElement | 3.299 us | 0.8178 us | 0.0448 us | 0.5302 | 0.0038 | 6.51 KB |
120119| JsonCons.JsonElement | 4.176 us | 0.5887 us | 0.0323 us | 0.6866 | - | 8.49 KB |
You can’t perform that action at this time.
0 commit comments