diff options
author | 2018-11-16 13:56:29 +0000 | |
---|---|---|
committer | 2018-11-16 13:56:29 +0000 | |
commit | 343c1fbdbea110d9b4aca00c4182accb977d2202 (patch) | |
tree | e14f26e46572c4026325257572e05e920f3a0a00 /scripts | |
parent | Azure: Switch to shell script task instead of calling bash ourselves (diff) |
Azure: OK, turns out secret variables must be task args and otherwise aren't available to the running script
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/deploy-azure.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/deploy-azure.sh b/scripts/deploy-azure.sh index 84509f461..8cb9fe770 100644 --- a/scripts/deploy-azure.sh +++ b/scripts/deploy-azure.sh @@ -23,7 +23,7 @@ if [[ ($BUILD_SOURCEBRANCHNAME == 'master') && ($SYSTEM_PULLREQUEST_PULLREQUESTI docker push pythondiscord/bot:latest echo "Deploying container" - curl -H "token: $AUTODEPLOY_TOKEN" $AUTODEPLOY_WEBHOOK + curl -H "token: $1" $2 else echo "Skipping deploy" fi
\ No newline at end of file |