Skip to content

Commit

Permalink
changes to double quotes and changes to file reference
Browse files Browse the repository at this point in the history
  • Loading branch information
ehearneRedHat committed May 15, 2024
1 parent 3d96086 commit 85c7377
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/upload-dashboards.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
auth=$(cat auth.txt)
# App Developer Dashboard
curl -X POST -F 'files=json=examples/dashboards/app_developer.json' -H 'Content-Type: multipart/form-data' -H 'Authorization: Basic $auth' "https://www.grafana.com/api/dashboards/20970/revisions"
curl -X POST -F 'json=@examples/dashboards/app_developer.json' -H 'Content-Type: multipart/form-data' -H "Authorization: Basic $auth" "https://www.grafana.com/api/dashboards/20970/revisions"
# Business User Dashboard
curl -X POST -F 'files=json=examples/dashboards/business_user.json' -H 'Content-Type: multipart/form-data' -H 'Authorization: Basic $auth' "https://www.grafana.com/api/dashboards/20981/revisions"
curl -X POST -F 'json=@examples/dashboards/business_user.json' -H 'Content-Type: multipart/form-data' -H "Authorization: Basic $auth" "https://www.grafana.com/api/dashboards/20981/revisions"
# Platform Engineer Dashboard
curl -X POST -F 'files=json=examples/dashboards/platform_engineer.json' -H 'Content-Type: multipart/form-data' -H 'Authorization: Basic $auth' "https://www.grafana.com/api/dashboards/20982/revisions"
curl -X POST -F 'json=@examples/dashboards/platform_engineer.json' -H 'Content-Type: multipart/form-data' -H "Authorization: Basic $auth" "https://www.grafana.com/api/dashboards/20982/revisions"

0 comments on commit 85c7377

Please sign in to comment.