diff --git a/.github/scripts/sync_docs.sh b/.github/scripts/sync_docs.sh index ff5bc2c1..6e61b419 100755 --- a/.github/scripts/sync_docs.sh +++ b/.github/scripts/sync_docs.sh @@ -45,7 +45,7 @@ elif [ "$EVENT" == "release" ]; then # Check if contrib_versions.json exists and modify it if required if [[ -f $VERSION_FILE ]]; then jq --arg new_version "$new_version" 'del(.[] | select(. == $new_version))' $VERSION_FILE > temp.json && mv temp.json $VERSION_FILE - jq -S . ${VERSION_FILE} > temp.json && mv temp.json ${VERSION_FILE} + jq 'sort | reverse' ${VERSION_FILE} > temp.json && mv temp.json ${VERSION_FILE} fi # Run docusaurus versioning command