diff options
Diffstat (limited to 'scripts/deploy.py')
-rw-r--r-- | scripts/deploy.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/deploy.py b/scripts/deploy.py new file mode 100644 index 000000000..04f3e8229 --- /dev/null +++ b/scripts/deploy.py @@ -0,0 +1,8 @@ +import os + +import requests + +url = os.environ.get("AUTODEPLOY_WEBHOOK") +token = os.environ.get("AUTODEPLOY_TOKEN") +result = requests.get(url=url, headers={'token': token}) +print(result.text) |