aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/deploy-azure.sh
diff options
context:
space:
mode:
authorGravatar S. Co1 <[email protected]>2019-10-01 11:48:31 -0400
committerGravatar S. Co1 <[email protected]>2019-10-01 11:49:03 -0400
commit29559a296c32ba1dbcc6125d88f6eba37db934a7 (patch)
tree5d4444a1e1600b03974dab8cae388f887ed261fb /scripts/deploy-azure.sh
parentlinter is the bane of my existence (diff)
parentUpdate contrib doc for new wiki links (#470) (diff)
Merge branch 'master' into add-role-info-command
Diffstat (limited to 'scripts/deploy-azure.sh')
-rw-r--r--scripts/deploy-azure.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/deploy-azure.sh b/scripts/deploy-azure.sh
deleted file mode 100644
index ed4b719e2..000000000
--- a/scripts/deploy-azure.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-cd ..
-
-# Build and deploy on master branch, only if not a pull request
-if [[ ($BUILD_SOURCEBRANCHNAME == 'master') && ($SYSTEM_PULLREQUEST_PULLREQUESTID == '') ]]; then
- echo "Building image"
- docker build -t pythondiscord/bot:latest .
-
- echo "Pushing image"
- docker push pythondiscord/bot:latest
-fi