-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug Fix: release process cosign step
Signed-off-by: Itay Grudev <[email protected]>
- Loading branch information
1 parent
2e8f8b1
commit eb44713
Showing
2 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
#name: release-publish-grafana | ||
# | ||
#on: | ||
# push: | ||
# branches: | ||
# - main | ||
# paths: | ||
# - 'charts/cluster/grafana-dashboard.json' | ||
# | ||
#jobs: | ||
# release: | ||
# runs-on: ubuntu-22.04 | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
# with: | ||
# fetch-depth: 0 # important for fetching all history to run comparison against | ||
# | ||
# - name: Push dashboard to Grafana.com | ||
# env: | ||
# DASHBOARD_ID: 20417 | ||
# GRAFANA_COM_TOKEN: ${{secrets.GRAFANA_COM_TOKEN}} | ||
# run: | | ||
# cat charts/cluster/grafana-dashboard.json | curl -X PATCH -H "Content-Type: application/json" -H "Authorization: Bearer $GRAFANA_COM_TOKEN" --data-binary @- https://grafana.com/api/dashboards/db | ||
name: release-publish-grafana | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'charts/cluster/grafana-dashboard.json' | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
with: | ||
fetch-depth: 0 # important for fetching all history to run comparison against | ||
|
||
- name: Push dashboard to Grafana.com | ||
env: | ||
DASHBOARD_ID: 20417 | ||
GRAFANA_COM_TOKEN: ${{secrets.GRAFANA_COM_TOKEN}} | ||
run: | | ||
cat charts/cluster/grafana-dashboard.json | curl -X PATCH -H "Content-Type: application/json" -H "Authorization: Bearer $GRAFANA_COM_TOKEN" --data-binary @- https://grafana.com/api/dashboards/db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters