debugging helm release github actions workflow
This commit is contained in:
parent
40df01dc90
commit
9baba271b4
2 changed files with 18 additions and 12 deletions
18
.github/workflows/on-helm-release-pr-merged.yml
vendored
Normal file
18
.github/workflows/on-helm-release-pr-merged.yml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
name: Update grafana/helm-charts repo
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- helm/oncall/Chart.yaml
|
||||
|
||||
jobs:
|
||||
call-update-helm-repo:
|
||||
uses: grafana/helm-charts/.github/workflows/update-helm-repo.yaml@main
|
||||
with:
|
||||
charts_dir: helm
|
||||
cr_configfile: helm/cr.yaml
|
||||
ct_configfile: helm/ct.yaml
|
||||
secrets:
|
||||
helm_repo_token: ${{ secrets.GH_HELM_RELEASE }}
|
||||
12
.github/workflows/on-release-published.yml
vendored
12
.github/workflows/on-release-published.yml
vendored
|
|
@ -139,15 +139,3 @@ jobs:
|
|||
with:
|
||||
github-token: ${{ env.GITHUB_API_KEY }}
|
||||
number: ${{ needs.create-helm-release-pr.outputs.helm_release_pr_number }}
|
||||
|
||||
update-helm-repo:
|
||||
name: Update Helm Repo
|
||||
uses: grafana/helm-charts/.github/workflows/update-helm-repo.yaml@main
|
||||
needs:
|
||||
- merge-helm-release-pr
|
||||
with:
|
||||
charts_dir: helm
|
||||
cr_configfile: helm/cr.yaml
|
||||
ct_configfile: helm/ct.yaml
|
||||
secrets:
|
||||
helm_repo_token: ${{ secrets.GH_HELM_RELEASE }}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue