From 74989dabd547597a1e3593ac514cd63781df180d Mon Sep 17 00:00:00 2001 From: John Ottenlips Date: Thu, 18 Jan 2024 13:38:57 -0600 Subject: [PATCH] one line --- .github/workflows/notify-deployment.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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 }}