mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
10 lines
275 B
Bash
10 lines
275 B
Bash
|
#!/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}
|