From 96a44b823e93f45cf53322e1bc55cde0cc36c03d Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Sun, 30 Nov 2025 16:17:32 -0600 Subject: [PATCH] fix --- .gitea/workflows/render-manifests.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/render-manifests.yaml b/.gitea/workflows/render-manifests.yaml index cf03f4eac..1d5e3624a 100644 --- a/.gitea/workflows/render-manifests.yaml +++ b/.gitea/workflows/render-manifests.yaml @@ -157,14 +157,14 @@ jobs: -H "Authorization: token ${GITEA_TOKEN}" \ -H "Content-Type: application/json" \ --data "${PAYLOAD}" \ - "${API_ENDPOINT}" | tee /tmp/pr_response.json \ + "${API_ENDPOINT}" | tee /tmp/pr_response \ | head -n 1 ) - echo ">> Gitea API Response Body ... - echo "---- - echo "$(cat /tmp/pr_response.json)" - echo "---- + echo ">> Gitea API Response Body ..." + echo "----" + echo "$(cat /tmp/pr_response)" + echo "----" if [ "$HTTP_STATUS" == "201" ]; then echo ">> Pull Request created successfully!"