首页 > 解决方案 > How to send environment variables using curl

问题描述

I am trying to use slack to notify when a build is complete or if a build fails on GitlabCI. What I also wanna be able to do is append a predefined environment variable $GITLAB_CI_COMMIT_TITLE so along with the build notification I also know which build with what commit has completed/failed

In short,

This works

"curl -X POST -H 'Content-type: application/json' --data '{\"text\":\" Client Staging build complete. \n\"}'
https://hooks.slack.com/services/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"

But this doesnt

"curl -X POST -H 'Content-type: application/json' --data-binary '{
      "'"$CI_COMMIT_TITLE"'" \n\"}'

The second command works, but it doesnt export the value of the variable, I just see '$CI_COMMIT_TITLE' in the slack notification.

What am I doing wrong? Any help will be greatly appreciated! Thank you!

标签: curlenvironment-variables

解决方案


I stumbled across the same problem and it seems that the following solution works:

curl -X POST -H 'Content-type: application/json'
     --data '{"text": " '"$CI_COMMIT_TITLE"' "}'

Hope it helps!


推荐阅读