remember to create and upload index.json

This commit is contained in:
Alek Westover
2023-07-10 13:46:32 -04:00
parent b06dcaa88a
commit 26a1daf1bf
2 changed files with 4 additions and 0 deletions

View File

@@ -977,6 +977,7 @@ jobs:
run: |
for BUCKET in $(echo ${S3_BUCKETS}); do
aws s3 cp --recursive --only-show-errors ./extensions-to-upload s3://${BUCKET}/${{ needs.tag.outputs.build-tag }}/${{ matrix.version }}
aws s3 cp --only-show-errors ./control_files/control_index.json s3://${BUCKET}/${{ needs.tag.outputs.build-tag }}/${{ matrix.version }}
done
- name: Cleanup

View File

@@ -13,3 +13,6 @@ for prefix in os.listdir("."):
"control": control
}
with open("control_index.json", "w") as f:
json.dump(index, f)