From 1fdad9ce5b9a24583fa114b389b5ec727d619f30 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 21 Dec 2023 11:00:57 -0500 Subject: [PATCH] Add curl command to deploy setp --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 68b98f0..4c1c1d4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -17,7 +17,6 @@ steps: - poetry install # Start with a fresh database (which is already running as a service from Drone) - poetry run pytest --cov-report term:skip-covered --cov=vrobbler tests - - curl -d "Deploy successful!" -H "Title: Vrobbler CI process complete" -H "Priority: high" -H "Tags: success,cd" https://ntfy.unbl.ink/drone environment: VROBBLER_DATABASE_URL: sqlite:///test.db volumes: @@ -39,6 +38,7 @@ steps: - vrobbler migrate - vrobbler collectstatic --noinput - immortalctl restart celery && immortalctl restart vrobbler + - curl -d "Deploy successful!" -H "Title: Vrobbler CI process complete" -H "Priority: high" -H "Tags: success,cd" https://ntfy.unbl.ink/drone when: branch: - main