Files

14 lines
324 B
Bash
Raw Permalink Normal View History

2022-02-05 16:46:25 -08:00
# Triggers a webhook to update the server
#!/bin/bash
#echo $DEPLOY_SECRET
echo "Deploy to production...."
export DATA="{\"ref\":\"$DEPLOY_SECRET\"}"
#echo $DATA
curl -X POST http://fullstack.cash:9000/hooks/wallet.fullstack.cash -H "Content-Type: application/json" -d $DATA
echo "...Finished deploying to production."