From 45cfba68acd412ad6232372ee3ccae429a3b8a4b Mon Sep 17 00:00:00 2001 From: powe97 <116031952+powe97@users.noreply.github.com> Date: Wed, 6 Mar 2024 12:10:23 -0600 Subject: [PATCH] Sort output JSON --- .github/workflows/transfer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/transfer.yml b/.github/workflows/transfer.yml index 333ff64..f28d6ca 100644 --- a/.github/workflows/transfer.yml +++ b/.github/workflows/transfer.yml @@ -75,7 +75,7 @@ jobs: - name: Combine JSONs run: | - cat new-data/* | jq -s 'add' > data/transfer.json + cat new-data/* | jq -s 'add | sort_by(.institution)' > data/transfer.json - name: Commit data working-directory: data