From e530a3768b9ad93ac2951860e9d7eacd7df25de1 Mon Sep 17 00:00:00 2001 From: timmyhadwen Date: Sat, 17 Jan 2026 14:38:16 +1000 Subject: [PATCH] Fix upload_packages: use wget instead of curl (dependency conflict) --- kibot-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kibot-ci.yml b/kibot-ci.yml index c2b9b63..3d1ad33 100644 --- a/kibot-ci.yml +++ b/kibot-ci.yml @@ -382,17 +382,17 @@ upload_packages: artifacts: true script: - | - apt-get update && apt-get -y install zip curl + apt-get update && apt-get -y install zip # Create combined zip zip -r Fabrication/All.zip Fabrication/ - # Upload each zip to package registry + # Upload each zip to package registry using wget (curl has dependency issues in this image) for zipfile in $(find Fabrication/ -maxdepth 1 -name '*.zip'); do basename=$(basename "$zipfile" .zip) url="${PACKAGE_REGISTRY_URL}/${VERSION}/${basename}-${VERSION}.zip" echo "Uploading: $zipfile to $url" - curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file "$zipfile" "$url" + wget --header="JOB-TOKEN: ${CI_JOB_TOKEN}" --method=PUT --body-file="$zipfile" -O- "$url" done artifacts: when: always