From 71b35f2989598ac1ab02ccffdb71d03ded3bef3d Mon Sep 17 00:00:00 2001 From: John Ottenlips Date: Thu, 18 Jan 2024 14:06:45 -0600 Subject: [PATCH] casing on content type --- .github/workflows/notify-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notify-deployment.yaml b/.github/workflows/notify-deployment.yaml index 8bb1a6b..bf72a3c 100644 --- a/.github/workflows/notify-deployment.yaml +++ b/.github/workflows/notify-deployment.yaml @@ -13,7 +13,7 @@ jobs: with: bun-version: latest - run: | - curl -X POST -H "x-vestaboard-api-key: $VB_SUB_KEY" -H "x-vestaboard-api-secret: $VB_SUB_SECRET" -H "content-type: application/json" -D '{"text": "{64} New Wodaboard Deployment!"}' https://subscriptions.vestaboard.com/subscriptions/$VB_SUB_ID/message + curl -X POST -H "x-vestaboard-api-key: $VB_SUB_KEY" -H "x-vestaboard-api-secret: $VB_SUB_SECRET" -H "Content-Type: application/json" -D '{"text": "{64} New Wodaboard Deployment!"}' https://subscriptions.vestaboard.com/subscriptions/$VB_SUB_ID/message env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} VB_SUB_ID: ${{ secrets.VB_SUB_ID }}