From 1c891689b49b767afb489e3a89511405b415af11 Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Fri, 19 Dec 2025 17:29:40 -0500 Subject: [PATCH] I think we got it --- .forgejo/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index a503acb..824b1ea 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -71,9 +71,9 @@ jobs: echo "Creating release for ${TAG}..." JSON_PAYLOAD=$(printf '{"tag_name": "%s", "name": "%s"}' "$TAG" "$TAG") echo "Payload: ${JSON_PAYLOAD}" - RESPONSE=$(curl -sv -X POST \ - -H "Authorization: token ${FORGEJO_TOKEN}" \ + RESPONSE=$(curl -sv --http1.1 -X POST \ -H "Content-Type: application/json" \ + -H "Authorization: token ${FORGEJO_TOKEN}" \ -d "$JSON_PAYLOAD" \ "${API_BASE}/repos/${REPO}/releases" 2>&1) echo "Full response: ${RESPONSE}"