More release debugging
Build Debug APK / build (push) Successful in 9m21s

This commit is contained in:
Greg Shuflin
2026-05-21 12:01:34 -07:00
parent d1086b0a36
commit c2edbae030
+2 -2
View File
@@ -42,8 +42,8 @@ RELEASE_ID=$(curl --fail-with-body -sX POST "${AUTH[@]}" \
-d "{\"tag_name\":\"$TAG\",\"name\":\"Debug build $SHORT_SHA\",\"body\":\"Automated debug build from commit $GITEA_SHA\",\"prerelease\":true}" \
"$API/releases" | "$JQ_BIN" -r '.id')
echo "Uploading APK..."
curl --fail-with-body -sX POST "${AUTH[@]}" \
echo "Uploading APK to release $RELEASE_ID..."
curl --fail-with-body -X POST "${AUTH[@]}" \
-F "attachment=@$APK_PATH;filename=$(basename "$APK_PATH")" \
"$API/releases/$RELEASE_ID/assets"