forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
280 B
10 lines
280 B
#!/bin/bash
|
|
|
|
_circle_token=$1
|
|
|
|
trigger_build_url="https://circleci.com/api/v1/project/grafana/grafana-packer/tree/master?circle-token=${_circle_token}"
|
|
|
|
curl \
|
|
--header "Accept: application/json" \
|
|
--header "Content-Type: application/json" \
|
|
--request POST "${trigger_build_url}"
|
|
|