ci: re-fix discord data quoting

This commit is contained in:
41666 2021-01-12 23:33:02 -05:00
parent e4f7b4dd97
commit 46769cce55

View file

@ -214,7 +214,7 @@ jobs:
]
}'
curl -X POST -H "content-type: application/json" --data $DATA ${{ secrets.DEPLOYMENT_WEBHOOK_URL }}
curl -X POST -H "content-type: application/json" --data "$DATA" ${{ secrets.DEPLOYMENT_WEBHOOK_URL }}
- name: Yell Failure at Discord
if: failure()
@ -237,4 +237,4 @@ jobs:
]
}'
curl -X POST -H "content-type: application/json" --data '$DATA' ${{ secrets.DEPLOYMENT_WEBHOOK_URL }}
curl -X POST -H "content-type: application/json" --data "$DATA" ${{ secrets.DEPLOYMENT_WEBHOOK_URL }}