Version v0.3.5 - "test build"

This commit is contained in:
2025-09-01 15:25:45 -04:00
parent 8616e78547
commit 60276f5c97
4 changed files with 5 additions and 7 deletions

View File

@@ -185,12 +185,10 @@ upload_release_asset() {
fi
# Upload the asset
curl -X POST "$api_url/releases/$release_id/assets" \
curl -X POST "$api_url/releases/$release_id/assets?name=$filename" \
-H "Authorization: token $token" \
-H "Content-Type: application/octet-stream" \
-T "$filename" \
--data-binary "@$filename" \
-G -d "name=$filename"
-T "$filename"
if [ $? -eq 0 ]; then
print_success "Uploaded $filename successfully"