From 6d1322a5dd148bce2905652ba1aca1c0fb279506 Mon Sep 17 00:00:00 2001 From: Aditya Garg <85610623+AdityaGarg8@users.noreply.github.com> Date: Wed, 27 Nov 2024 13:31:51 +0530 Subject: [PATCH] distro metadata update --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 57f1adc..670fb67 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -99,6 +99,7 @@ jobs: # Define the new links new_link1 = "https://github.com/t2linux/T2-Ubuntu/releases/download/v${{ env.isotag }}/kubuntu-24.04-${{ env.kver }}-t2-noble.iso.00" new_link2 = "https://github.com/t2linux/T2-Ubuntu/releases/download/v${{ env.isotag }}/kubuntu-24.04-${{ env.kver }}-t2-noble.iso.01" + new_link3 = "https://github.com/t2linux/T2-Ubuntu/releases/download/v${{ env.isotag }}/kubuntu-24.04-${{ env.kver }}-t2-noble.iso.02" # Load the JSON file with open('distro-metadata.json', 'r') as file: data = json.load(file) @@ -108,7 +109,7 @@ jobs: if distro['name'] == name: distro['iso'] = new_links # Update the links - update_links(data['all'], "Kubuntu 24.04 - Noble Numbat", [new_link1, new_link2]) + update_links(data['all'], "Kubuntu 24.04 - Noble Numbat", [new_link1, new_link2, new_link3]) # Save the updated JSON back to the file with open('distro-metadata.json', 'w') as file: json.dump(data, file, indent=2)