diff --git a/.github/workflows/unlist-nuget.yml b/.github/workflows/unlist-nuget.yml index f0e0a2bd..020f3828 100644 --- a/.github/workflows/unlist-nuget.yml +++ b/.github/workflows/unlist-nuget.yml @@ -2,11 +2,6 @@ name: Unlist NuGet on: workflow_dispatch: - inputs: - version: - description: 'Version to unlist' - required: true - type: string # release: # types: [deleted] @@ -24,14 +19,11 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 - - - name: Debug version input - run: echo "Version to unlist: ${{ github.event.release.tag_name || github.event.inputs.version }}" # Unlist - name: Unlist Deleted Tag uses: darenm/unlist-nuget@v1 with: NUGET_PACKAGE: ${{ env.PROJECT_NAME }} # Full Package ID - VERSION_REGEX: ${{ github.event.release.tag_name || github.event.inputs.version }} + VERSION_REGEX: ${{ github.event.release.tag_name }} NUGET_KEY: ${{ secrets.NUGET_API_KEY }} # nuget.org API key diff --git a/README.md b/README.md index d3d2eaa4..d81ecbe3 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,6 @@ Here is a performance comparison of various JSONPath queries on the standard boo } } ``` - | Method | Mean | Error | StdDev | Gen0 | Gen1 | Allocated | |------------------------ |----------:|----------:|----------:|-------:|-------:|----------:| |`$..[?(@.price < 10)]` @@ -106,15 +105,15 @@ Here is a performance comparison of various JSONPath queries on the standard boo | Newtonsoft.JObject | 12.153 us | 2.4881 us | 0.1364 us | 2.1057 | 0.0763 | 25.86 KB | | JsonEverything.JsonNode | 23.541 us | 1.3946 us | 0.0764 us | 3.9063 | 0.1221 | 48.15 KB | | | | | | | | | -| `$..['bicycle','price']` +|`$..['bicycle','price']` | JsonCraft.JsonElement | 3.136 us | 0.2760 us | 0.0151 us | 0.3242 | - | 4.01 KB | | Hyperbee.JsonElement | 3.578 us | 0.4623 us | 0.0253 us | 0.4349 | 0.0038 | 5.37 KB | | JsonCons.JsonElement | 3.948 us | 0.6099 us | 0.0334 us | 0.5798 | - | 7.18 KB | | Hyperbee.JsonNode | 5.181 us | 1.8016 us | 0.0988 us | 0.7477 | 0.0076 | 9.23 KB | | Newtonsoft.JObject | 7.823 us | 0.8017 us | 0.0439 us | 1.1749 | 0.0458 | 14.55 KB | | JsonEverything.JsonNode | 16.753 us | 1.5507 us | 0.0850 us | 2.3193 | 0.0610 | 28.5 KB | -| -| ` $..*` | | | | | | | +| | | | | | | | +|`$..` | | | | | | | | JsonCraft.JsonElement | 2.497 us | 0.0903 us | 0.0049 us | 0.2327 | - | 2.88 KB | | Hyperbee.JsonElement | 3.299 us | 0.8178 us | 0.0448 us | 0.5302 | 0.0038 | 6.51 KB | | JsonCons.JsonElement | 4.176 us | 0.5887 us | 0.0323 us | 0.6866 | - | 8.49 KB |