Revision 8f09845ad62ebfe9b51fa01fe0634fd229c6ba37 authored by Armand Grillet on 01 March 2023, 12:37:16 UTC, committed by Armand Grillet on 01 March 2023, 12:37:16 UTC
1 parent f1877d2
Raw File
trigger_grafana_packer.sh
#!/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}"
back to top