From 293b6cc156b5aa892c1cc8a9811915ab3afd1a02 Mon Sep 17 00:00:00 2001 From: surtur Date: Wed, 3 Jun 2020 20:20:06 +0200 Subject: [PATCH] fix: correctly call specific DH endpoints --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 762543d..426e63a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -30,7 +30,7 @@ steps: ENDPOINT: from_secret: dockerhub_endpoint commands: - - curl -s -X POST $ENDPOINT + - curl -H "Content-Type: application/json" --data '{"docker_tag": "latest"}' -X POST $ENDPOINT --- @@ -61,7 +61,7 @@ steps: ENDPOINT: from_secret: dockerhub_endpoint_nightly commands: - - curl -s -X POST $ENDPOINT + - curl -H "Content-Type: application/json" --data '{"docker_tag": "nightly"}' -X POST $ENDPOINT ---