We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c924648 commit a2ae3afCopy full SHA for a2ae3af
.github/workflows/nuget.yml
@@ -27,7 +27,10 @@ jobs:
27
- name: Get the latest published version from NuGet
28
id: get_latest_version
29
run: |
30
- LATEST_VERSION=$(curl -s "https://api.nuget.org/v3-flatcontainer/SimpleDataGrid/index.json" | jq -r '.versions[0]')
+ echo "Debugging curl output for NuGet versions:"
31
+ curl_output=$(curl -s "https://api.nuget.org/v3-flatcontainer/SimpleDataGrid/index.json")
32
+ echo "$curl_output"
33
+ LATEST_VERSION=$(echo "$curl_output" | jq -r '.versions[0]')
34
echo "LATEST_VERSION=$LATEST_VERSION" >> $GITHUB_ENV
35
36
- name: Compare versions
0 commit comments