From d2a8c7fc25df35c5d73936109261e12acd0e1cb4 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sat, 6 Jul 2024 17:54:55 -0700 Subject: [PATCH] build(ghcr_deploy.yml): fix curl command --- .github/workflows/ghcr_deploy.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ghcr_deploy.yml b/.github/workflows/ghcr_deploy.yml index 4045056e3..e51098d2c 100644 --- a/.github/workflows/ghcr_deploy.yml +++ b/.github/workflows/ghcr_deploy.yml @@ -302,14 +302,15 @@ jobs: RELEASE_NOTES: ${{ steps.release-notes.outputs.result }} run: | curl -H "Content-Type: application/json" -X POST -d '{ - "content": "New LiteLLM release ${{ env.RELEASE_TAG }}", + "content": "New LiteLLM release '"${RELEASE_TAG}"'", "username": "Release Changelog", "avatar_url": "https://cdn.discordapp.com/avatars/487431320314576937/bd64361e4ba6313d561d54e78c9e7171.png", "embeds": [ { - "title": "Changelog for LiteLLM ${{ env.RELEASE_TAG }}", - "description": "${{ env.RELEASE_NOTES }}", + "title": "Changelog for LiteLLM '"${RELEASE_TAG}"'", + "description": "'"${RELEASE_NOTES}"'", "color": 2105893 } ] }' $WEBHOOK_URL +