Skip to content

Merge pull request #87 from shopware/fix/prometheus-rbac #87

Merge pull request #87 from shopware/fix/prometheus-rbac

Merge pull request #87 from shopware/fix/prometheus-rbac #87

Workflow file for this run

name: "Publish charts to repo"
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
permissions:
pages: write
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v4
- name: add repos for shopware helm chart
run: |
helm repo add percona https://percona.github.io/percona-helm-charts
helm repo add grafana https://grafana.github.io/helm-charts
helm repo add prometheus https://prometheus-community.github.io/helm-charts
helm repo add shopware https://shopware.github.io/helm-charts
helm repo add opentelemetry https://open-telemetry.github.io/opentelemetry-helm-charts
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
with:
skip_existing: true
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"