diff --git a/.github/workflows/notify-deployment.yaml b/.github/workflows/notify-deployment.yaml index cb3f12d..9576a32 100644 --- a/.github/workflows/notify-deployment.yaml +++ b/.github/workflows/notify-deployment.yaml @@ -13,12 +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" \ - -d '{"text": "{64}New Wodaboard Deployment{64}"}' \ - 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" -d '{"text": "{64}New Wodaboard Deployment{64}"}' https://subscriptions.vestaboard.com/subscriptions/$VB_SUB_ID/message env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} VB_SUB_ID: ${{ secrets.VB_SUB_ID }}