aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/deploy-azure.sh
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2019-10-11 21:02:35 +0200
committerGravatar Johannes Christ <[email protected]>2019-10-11 21:02:35 +0200
commit0e45a02968ee7b7ee4d9071670cb4af832adbfe9 (patch)
tree98029904cd24553b9430549d0d09356d4e5dc39a /scripts/deploy-azure.sh
parentImplement test cases suggested by @MarkKoz. (diff)
parentMerge pull request #505 from python-discord/user-log-display-name-changes (diff)
Merge branch 'master' into bot-utils-time-tests
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