From 68a25dc9fd9b4a00bc8a2dcbad67af2c59d986cb Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Sun, 30 Nov 2025 16:26:57 -0600 Subject: [PATCH] change command --- .gitea/workflows/render-manifests.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/render-manifests.yaml b/.gitea/workflows/render-manifests.yaml index 1d5e3624a..3ce320831 100644 --- a/.gitea/workflows/render-manifests.yaml +++ b/.gitea/workflows/render-manifests.yaml @@ -154,11 +154,13 @@ jobs: HTTP_STATUS=$( curl -X POST \ + --write-out '%{http_code}' \ + --silent \ + --output /tmp/pr_response \ -H "Authorization: token ${GITEA_TOKEN}" \ -H "Content-Type: application/json" \ --data "${PAYLOAD}" \ - "${API_ENDPOINT}" | tee /tmp/pr_response \ - | head -n 1 + "${API_ENDPOINT}" ) echo ">> Gitea API Response Body ..."