fix: correctly call specific DH endpoints

This commit is contained in:
surtur 2020-06-03 20:20:06 +02:00
parent afc57531ef
commit 293b6cc156
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

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