mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
10 lines
272 B
Bash
Executable File
10 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
|
|
_token=$1
|
|
|
|
curl \
|
|
-H "Content-Type: application/json" \
|
|
-H "Authorization: Bearer ${_token}" \
|
|
-X POST -d '{ "accountName": "Torkeldegaard", "projectSlug": "grafana","branch": "master","environmentVariables": {}}' \
|
|
https://ci.appveyor.com/api/builds
|