mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-21 16:52:04 -07:00
Merge branch 'master' into bchn
This commit is contained in:
+11
-2
@@ -1,9 +1,14 @@
|
||||
#!/bin/bash
|
||||
# Triggers a webhook to update the staging server at staging.fullstack.cash.
|
||||
|
||||
#!/bin/bash
|
||||
#echo $DEPLOY_SECRET
|
||||
|
||||
echo "Deploy to production...."
|
||||
# This if statement will only deploy on Jenkins when its testing the master branch.
|
||||
echo "-->$GIT_BRANCH<--"
|
||||
if [[ $GIT_BRANCH =~ "master" ]]
|
||||
then
|
||||
|
||||
echo "Deploying to production...."
|
||||
|
||||
export DATA="{\"ref\":\"$DEPLOY_SECRET\"}"
|
||||
|
||||
@@ -15,3 +20,7 @@ curl -X POST http://$FREE_SERVER:9000/hooks/bch-api-testnet -H "Content-Type: ap
|
||||
curl -X POST http://$FREE_SERVER:9000/hooks/bch-api-mainnet -H "Content-Type: application/json" -d $DATA
|
||||
|
||||
echo "...Finished deploying to production."
|
||||
|
||||
else
|
||||
echo "Not master, so not deploying."
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user