From 3254ee00ebd8ae3ec2b84078ac09809d1111d2f2 Mon Sep 17 00:00:00 2001 From: Simon Sievert Date: Wed, 29 Jan 2025 20:51:13 +0100 Subject: [PATCH] build: upload .uf2 image to espruino.com --- scripts/ci_upload.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci_upload.sh b/scripts/ci_upload.sh index 2f4d29e68b..6582709b27 100755 --- a/scripts/ci_upload.sh +++ b/scripts/ci_upload.sh @@ -22,5 +22,5 @@ fi if [[ -n \"$UPLOADTOKEN\" ]]; then cd bin - ls -d *.bin *.hex *.tgz *.zip 2> /dev/null | xargs -I {} curl -v -F "binary=@{}" "http://www.espruino.com/travis_upload.php?commit=$COMMIT&branch=$BRANCH&token=$UPLOADTOKEN"; + ls -d *.bin *.hex *.uf2 *.tgz *.zip 2> /dev/null | xargs -I {} curl -v -F "binary=@{}" "https://www.espruino.com/travis_upload.php?commit=$COMMIT&branch=$BRANCH&token=$UPLOADTOKEN"; fi