I am using GitLab and would like to call within the .yml file an URL. I do have following .yml file so far:
stages:
- test
L15-Release:
stage: test
script:
- curl -X POST "http://www.test.com"
when: manual
tags:
- ts
How can I call such http site with the curl command?
Thanks.