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 ---