Skip to content

Commit

Permalink
removed double quotes from init auth
Browse files Browse the repository at this point in the history
  • Loading branch information
ehearneRedHat committed May 15, 2024
1 parent 2e0e137 commit 4f488c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/upload-dashboards.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# Push new dashboard changes
# Init variable with base64 auth
auth=$(echo -n "${{ secrets.GRAFANA_USERNAME }}:${{ secrets.GRAFANA_PASSWORD }}" | base64)
auth=$(echo -n ${{ secrets.GRAFANA_USERNAME }}:${{ secrets.GRAFANA_PASSWORD }} | base64)
# App Developer Dashboard
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"
Expand Down

0 comments on commit 4f488c9

Please sign in to comment.