Skip to content

Commit

Permalink
chore(deploy): fix quote (#2813)
Browse files Browse the repository at this point in the history
## Describe your changes

- Use proper quotes for body
Thought I was being smart
  • Loading branch information
bodinsamuel authored Oct 3, 2024
1 parent 076934c commit 04c07c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,4 @@ jobs:
COMMIT="${{ github.sha }}"
echo "Deploying $COMMIT to $SERVICE_ID"
curl -sS --fail-with-body --request POST "https://api.render.com/v1/services/$SERVICE_ID/deploys" --header "authorization: Bearer ${{ secrets.RENDER_API_KEY }}" --data '{ "commitId": "${COMMIT}" }'
curl -sS --fail-with-body --request POST "https://api.render.com/v1/services/$SERVICE_ID/deploys" --header "authorization: Bearer ${{ secrets.RENDER_API_KEY }}" --data "{ \"commitId\": \"$COMMIT\" }"

0 comments on commit 04c07c1

Please sign in to comment.